60 61 62 63 64 65 66 67 68 69
# File 'lib/hash_query.rb', line 60 def query(selectors) selectors = Selector.parse(selectors) found = descend(selectors, @hash, []) if found.empty? nil else found end end