Type of the output object
The input string
Optional
reviver: null | ParseReviverFunctionThe reviver
parameter of JSON.parse()
Optional
options: null | ParseOptionsThe custom options, refer to ParseOptions for details
Optional
typeGuard: TypeGuardFunction<T>The type guard function, ensures that the output object is of the expected type, refer to TypeGuardFunction for an example.
The output object
With the custom options, the input string can be either
JSON.parse()
)bson.EJSON.parse()
)lz4js.compress()
) of either of the abovetype Foo {
long_key: string
}
parse<Foo>(
"{\"lk\":\"A Large Object\"}",
(key, val) => {
if (key === "lk") {
return "A Modified Large Object"
}
return val
},
{
extended: false,
unminify: { enable: true, keyMap: { "lk": "long_key" } },
decompress: false
},
(obj: any): obj is Foo => {
const _obj: Partial<Foo> | null | undefined = obj
return typeof _obj?.long_key === "string"
}
)
Turns the input string into an object.
Type of the output object
The input string
Optional
options: null | ParseOptionsThe custom options, refer to ParseOptions for details
Optional
typeGuard: TypeGuardFunction<T>The type guard function, ensures that the output object is of the expected type, refer to TypeGuardFunction for an example.
The output object
With the custom options, the input string can be either
JSON.parse()
)bson.EJSON.parse()
)lz4js.compress()
) of either of the abovetype Foo {
long_key: string
}
parse<Foo>(
"{\"lk\":\"A Large Object\"}",
{
extended: false,
unminify: { enable: true, keyMap: { "lk": "long_key" } },
decompress: false
},
(obj: any): obj is Foo => {
const _obj: Partial<Foo> | null | undefined = obj
return typeof _obj?.long_key === "string"
}
)
Generated using TypeDoc
Turns the input string into an object.