unit tests part 3
All checks were successful
ci / build (push) Successful in 1m14s

This commit is contained in:
Christopher Hase 2025-03-31 14:27:20 +02:00
parent bd96958df5
commit 323cea883d
4661 changed files with 410946 additions and 5 deletions

View file

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