[Source]
# File lib/sinatra/core_ext/hash.rb, line 3 3: def symbolize_keys 4: self.inject({}) { |h,(k,v)| h[k.to_sym] = v; h } 5: end
[Validate]