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

jsonparse

Package Overview
Dependencies
Maintainers
2
Versions
11
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

jsonparse - npm Package Compare versions

Comparing version

to
1.3.1

test/surrogate.js

15

jsonparse.js

@@ -62,2 +62,3 @@ /*global Buffer*/

this.unicode = undefined; // unicode escapes
this.highSurrogate = undefined;

@@ -221,4 +222,16 @@ this.key = undefined;

if (this.tState++ === STRING6) {
this.appendStringBuf(Buffer(String.fromCharCode(parseInt(this.unicode, 16))));
var intVal = parseInt(this.unicode, 16);
this.unicode = undefined;
if (this.highSurrogate !== undefined && intVal >= 0xDC00 && intVal < (0xDFFF + 1)) { //<56320,57343> - lowSurrogate
this.appendStringBuf(new Buffer(String.fromCharCode(this.highSurrogate, intVal)));
this.highSurrogate = undefined;
} else if (this.highSurrogate === undefined && intVal >= 0xD800 && intVal < (0xDBFF + 1)) { //<55296,56319> - highSurrogate
this.highSurrogate = intVal;
} else {
if (this.highSurrogate !== undefined) {
this.appendStringBuf(new Buffer(String.fromCharCode(this.highSurrogate)));
this.highSurrogate = undefined;
}
this.appendStringBuf(new Buffer(String.fromCharCode(intVal)));
}
this.tState = STRING1;

@@ -225,0 +238,0 @@ }

2

package.json

@@ -5,3 +5,3 @@ {

"tags": ["json", "stream"],
"version": "1.3.0",
"version": "1.3.1",
"author": "Tim Caswell <tim@creationix.com>",

@@ -8,0 +8,0 @@ "repository": {