Newer
Older
2018-fumichan-thesis / sinatra-practice / form-sample / vendor / bundle / ruby / 2.5.0 / gems / backports-3.11.4 / lib / backports / 2.0.0 / hash / to_h.rb
unless Hash.method_defined? :to_h
  class Hash
    def to_h
      self.class == Hash ? self : {}.replace(self)
    end
  end
end