yea-stringify
Version:
Yet Another JSON.stringify with some additional features.
21 lines (18 loc) • 567 B
JavaScript
(function() {
"use strict";
const JSON_stringify = require("../index.js").setOption({
"show-length" : true,
});;
var obj = new Function("return this")();
var replacer = function(key, value, opt) {
if(opt) {
// eliminate primitive properties.
if(value == null || typeof(value) != "object") {
opt.eliminate = true;
return undefined;
}
}
return value;
};
console.log("global =", JSON_stringify(obj, replacer, 4));
}());