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.

cmp.js 335B

1234567891011
  1. var test = require('tape');
  2. var stringify = require('../');
  3. test('custom comparison function', function (t) {
  4. t.plan(1);
  5. var obj = { c: 8, b: [{z:6,y:5,x:4},7], a: 3 };
  6. var s = stringify(obj, function (a, b) {
  7. return a.key < b.key ? 1 : -1;
  8. });
  9. t.equal(s, '{"c":8,"b":[{"z":6,"y":5,"x":4},7],"a":3}');
  10. });