Welcome to mirror list, hosted at ThFree Co, Russian Federation.

nested.js « example « fast-json-stable-stringify « node_modules « npm « deps - github.com/nodejs/node.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 9a672fc65fb0fcf3112e578571df647a1acf0f46 (plain)
1
2
3
var stringify = require('../');
var obj = { c: 8, b: [{z:6,y:5,x:4},7], a: 3 };
console.log(stringify(obj));