the serialized string
OptionalcustomDeserializers: CustomDeserializersan object with custom deserializers
Optionaloptions: DeserializeOptionsoptions, currently only maxBigIntLength (default: 10000) - maximum allowed length of a single
serialized BigInt value, protects against malicious input blocking the event loop, as BigInt parsing time grows
faster than the value length; set to Infinity to disable the limit
Deserializes a string serialized with
serializeinto a value.You will need to specify deserializers if custom data types are serialized. See
serializefor more information.See
serialize.