@lorefnon/tslog
Version:
Extensible TypeScript Logger for Node.js and Browser.
16 lines (15 loc) • 424 B
JavaScript
export function jsonStringifyRecursive(obj) {
const cache = new Set();
return JSON.stringify(obj, (key, value) => {
if (typeof value === "object" && value !== null) {
if (cache.has(value)) {
return "[Circular]";
}
cache.add(value);
}
if (typeof value === "bigint") {
return `${value}`;
}
return value;
});
}