Son CV dans un terminal web en Javascript!
https://terminal-cv.gregandev.fr
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
8 lines
188 B
8 lines
188 B
1 year ago
|
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);
|