Revert "remove node_modules"

This reverts commit 2fb5731f23.
This commit is contained in:
Tatiana
2021-05-08 11:15:45 -07:00
parent 2fb5731f23
commit 2537c2e6e2
1762 changed files with 147353 additions and 0 deletions
+7
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);