Sha256: a84d2e922d9e94a1becfe879207951ae81c8555efa474a69c52d5a60948239b7
Contents?: true
Size: 298 Bytes
Versions: 85
Compression:
Stored size: 298 Bytes
Contents
# frozen_string_literal: true module HTTParty module Utils def self.stringify_keys(hash) return hash.transform_keys(&:to_s) if hash.respond_to?(:transform_keys) hash.each_with_object({}) do |(key, value), new_hash| new_hash[key.to_s] = value end end end end
Version data entries
85 entries across 85 versions & 3 rubygems