module Hashie::Extensions::DeepFind

def reduce_to_match(key, enumerable)

def reduce_to_match(key, enumerable)
  enumerable.reduce(nil) do |found, value|
    return found if found
    _deep_find(key, value)
  end
end