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