dashboard
repositories
filestore
activity
search
login
刘苏义
/
ruoyi-api
forked from
ard/ruoyi-api
summary
commits
tree
docs
forks
compare
blame
|
history
|
raw
优化提交
‘liusuyi’
2023-07-01
ef0ed9877417b7efb3a6ec72121bee56720f6939
[~liusuyi/ruoyi-api.git]
/
ruoyi-ui
/
node_modules
/
fast-json-stable-stringify
/
example
/
value_cmp.js
1
2
3
4
5
6
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);