You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
export const stringify = (value, replacer, space) => JSON.stringify(value, (key, value_) => {
|
|
const value = typeof value_ === 'bigint' ? value_.toString() : value_;
|
|
return typeof replacer === 'function' ? replacer(key, value) : value;
|
|
}, space);
|
|
//# sourceMappingURL=stringify.js.map
|