New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

sorted-json

Package Overview
Dependencies
Maintainers
1
Versions
10
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

sorted-json - npm Package Compare versions

Comparing version

to
0.1.2

2

package.json
{
"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(',') + '}';

}
};
};