Sha256: c29ef942d9dcbb78067f6bb3b3353b90d591961e293a0a5ffce5eb186b0c1048
Contents?: true
Size: 274 Bytes
Versions: 7
Compression:
Stored size: 274 Bytes
Contents
# frozen_string_literal: true class Serega module SeregaJSON class OjDump def self.call(data) ::Oj.dump(data, mode: :compat) end end class OjLoad def self.call(json_string) ::Oj.load(json_string) end end end end
Version data entries
7 entries across 7 versions & 1 rubygems