chore: update to version 14.0.11 and align website URLs

This commit is contained in:
2026-01-11 11:34:13 +03:00
parent ef74383349
commit 19c8d69bd8
1499 changed files with 53633 additions and 89 deletions
+15
View File
@@ -0,0 +1,15 @@
import { isBigInt } from './is/bigInt.js';
/** @internal */
function replacer(_, v) {
return isBigInt(v)
? v.toString()
: v;
}
/**
* @name stringify
* @summary Performs a JSON.stringify, with BigInt handling
* @description A wrapper for JSON.stringify that handles BigInt values transparently, converting them to string. No differences from the native JSON.stringify function otherwise.
*/
export function stringify(value, space) {
return JSON.stringify(value, replacer, space);
}