Secure parsing of JSON strings
JSON string
Whether to convert data, default: true
safeParse('100')// 100safeParse('{"a":"undefined","b":"NaN","c":"Infinity","d":"9007199254740993"}')// { b: NaN, c: Infinity, d: 9007199254740993n } Copy
safeParse('100')// 100safeParse('{"a":"undefined","b":"NaN","c":"Infinity","d":"9007199254740993"}')// { b: NaN, c: Infinity, d: 9007199254740993n }
Secure parsing of JSON strings