Sha256: bc155d7027404cea36a769c28c7c30919a4a265928a888a0b1c3f8774b45f293
Contents?: true
Size: 228 Bytes
Versions: 52
Compression:
Stored size: 228 Bytes
Contents
/** * Parses a given value into a JSON. * Does not throw an exception on an invalid JSON string. */ declare function jsonParse<ValueType extends Record<string, any>>(value: any): ValueType | undefined; export { jsonParse };
Version data entries
52 entries across 26 versions & 1 rubygems