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 = { c: 8, b: [{z:6,y:5,x:4},7], a: 3 };
var s = stringify(obj, function (a, b) {
return a.key < b.key ? 1 : -1;
});
console.log(s);