W72crm_web-master/node_modules/json-stable-stringify/example/key_cmp.js

10 lines
201 B
JavaScript
Raw Permalink Normal View History

2025-05-27 11:25:53 +08:00
'use strict';
var stringify = require('../');
var obj = { c: 8, b: [{ z: 6, y: 5, x: 4 }, 7], a: 3 };
var s = stringify(obj, function (a, b) {
return b.key.localeCompare(a.key);
});
console.log(s);