updating lint, format, and CI

This commit is contained in:
Luke Hagar
2025-03-19 23:08:52 -05:00
parent e6b03d05fe
commit 156308d124
3080 changed files with 413391 additions and 387 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);