Sha256: 9c1f57d58ebb9e0b4347dff5af07c411d113373e0883036189de12f0b500b1aa
Contents?: true
Size: 222 Bytes
Versions: 126
Compression:
Stored size: 222 Bytes
Contents
# frozen_string_literal: true class ReeObject::NotBlank include Ree::FnDSL fn :not_blank do link :is_blank end doc("Opposite to is_blank") contract(Any => Bool) def call(obj) !is_blank(obj) end end
Version data entries
126 entries across 126 versions & 1 rubygems