You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

8 lines
188B

  1. var stringify = require('../');
  2. var obj = { d: 6, c: 5, b: [{z:3,y:2,x:1},9], a: 10 };
  3. var s = stringify(obj, function (a, b) {
  4. return a.value < b.value ? 1 : -1;
  5. });
  6. console.log(s);