Comparing version
@@ -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 @@ } |
@@ -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": { |
36779
3.36%16
6.67%1068
3.09%