sorted-json
Advanced tools
Comparing version
{ | ||
"name": "sorted-json", | ||
"version": "0.1.1", | ||
"version": "0.1.2", | ||
"description": "a sorting-keys-versiong for `JSON.stringify`", | ||
@@ -5,0 +5,0 @@ "main": "sorted-json.js", |
@@ -38,16 +38,3 @@ 'use strict' | ||
if (typeof v == 'string') { | ||
if (typeof obj[k] == 'string') { | ||
parts.push('"' + k + '":"' + v + '"'); | ||
} | ||
else if (typeof obj[k] == 'object') { | ||
parts.push('"' + k + '":' + v); | ||
} | ||
} | ||
else if (typeof v == 'number') { | ||
parts.push('"' + k + '":' + v); | ||
} | ||
else if (typeof v == 'boolean') { | ||
parts.push('"' + k + '":' + v); | ||
} | ||
parts.push('"' + k + '":' + v); | ||
} | ||
@@ -60,2 +47,2 @@ return '{' + parts.join(',') + '}'; | ||
} | ||
}; | ||
}; |
3806
-9.55%42
-22.22%