stormy-weather/lib/hash-ext.rb
2012-02-05 22:01:28 -08:00

12 lines
174 B
Ruby

# Copyright 2012 Sami Samhuri <sami@samhuri.net>
class Hash
def slice(*keys)
keys.inject({}) do |h, k|
h[k] = self[k] if has_key?(k)
h
end
end
end