class Hamster::Hash

def to_hash

Returns:
  • (::Hash) -
def to_hash
  output = {}
  each do |key, value|
    output[key] = value
  end
  output
end