Sha256: d909eb95e63264964864f282dc1b428d8248146f0856b13863f06ace61bca200
Contents?: true
Size: 220 Bytes
Versions: 33
Compression:
Stored size: 220 Bytes
Contents
# frozen_string_literal: true module Aws module Json class JSONEngine def self.load(json) JSON.load(json) end def self.dump(value) JSON.dump(value) end end end end
Version data entries
33 entries across 33 versions & 1 rubygems