json-canonicalize
Version:
JSON canonicalize function
9 lines • 522 B
TypeScript
/**
* The main function for JSON canonicalization. It takes a JavaScript object and returns its canonical string representation.
*
* @param obj The JavaScript object to canonicalize.
* @param allowCircular If `true`, the function will handle circular references in the object by replacing them with `null`. Defaults to `false`.
* @returns The canonical string representation of the object.
*/
export declare function canonicalize(obj: any, allowCircular?: boolean): string;
//# sourceMappingURL=canonicalize.d.ts.map