# File lib/hashery/fuzzy_hash.rb, line 144
    def [](key)
      (hash.key?(key) && hash[key])  ||
        ((lookup = fuzzy_lookup(key)) && lookup && lookup.first) ||
        fuzzy_hash[key]
    end