InternetData Preliminary

This commit is contained in:
2021-07-24 22:43:59 -04:00
parent f8664abc0c
commit 7cb24da2ca
611 changed files with 111901 additions and 23 deletions
+7
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);