forked from epoberezkin/fast-json-stable-stringify
-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.js
60 lines (50 loc) · 1.58 KB
/
index.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
'use strict';
var keyList = Object.keys;
var native_stringify = JSON.stringify;
function stringify(val, allowUndefined) {
var i, max, str, keys, key, propVal, tipeof;
tipeof = typeof val;
if (tipeof === 'string') return native_stringify(val);
if (val === true) return 'true';
if (val === false) return 'false';
if (val === null) return 'null';
if (val instanceof Array) {
str = '[';
max = val.length - 1;
for(i = 0; i < max; i++)
str += stringify(val[i], false) + ',';
if (max > -1) {
str += stringify(val[i], false);
}
return str + ']';
}
if (val instanceof Object) {
if (typeof val.toJSON === 'function')
return stringify(val.toJSON(), allowUndefined);
// only object is left
keys = keyList(val).sort();
max = keys.length;
str = '';
i = 0;
while (i < max) {
key = keys[i];
propVal = stringify(val[key], true);
if (propVal !== undefined) {
if (i && str !== '') { //if the string is empty, don't add comma to avoid the json to become invalid.
str += ',';
}
str += native_stringify(key) + ':' + propVal;
}
i++;
}
return '{' + str + '}';
}
switch (tipeof) {
case 'function':
case 'undefined':
return allowUndefined ? undefined : null;
default:
return isFinite(val) ? val : null;
}
}
module.exports = function(obj) { return '' + stringify(obj, false); };