module JMESPath::Util

def falsey?(value)


https://github.com/jmespath/jmespath.site/blob/master/docs/proposals/improved-filters.rst#and-expressions-1

Determines if a value is false as defined by JMESPath:
def falsey?(value)
  !value ||
    (value.respond_to?(:to_ary) && value.to_ary.empty?) ||
    (value.respond_to?(:to_hash) && value.to_hash.empty?) ||
    (value.respond_to?(:to_str) && value.to_str.empty?) ||
    (value.respond_to?(:entries) && !value.entries.any?)
  # final case necessary to support Enumerable and Struct
end