Comparing version 2.2.0 to 2.3.0
@@ -297,3 +297,3 @@ var bl = require('bl') | ||
} | ||
} else if (first > 0xe0) { | ||
} else if (first >= 0xe0) { | ||
// 5 bits negative ints | ||
@@ -300,0 +300,0 @@ result = first - 0x100 |
@@ -107,3 +107,3 @@ | ||
} else { | ||
if (obj > -32) { | ||
if (obj >= -32) { | ||
buf = new Buffer(1) | ||
@@ -110,0 +110,0 @@ buf[0] = 0x100 + obj |
{ | ||
"name": "msgpack5", | ||
"version": "2.2.0", | ||
"version": "2.3.0", | ||
"description": "A msgpack v5 implementation for node.js and the browser, with extension points", | ||
@@ -44,3 +44,3 @@ "main": "index.js", | ||
"tap": "^0.4.11", | ||
"tape": "^3.5.0", | ||
"tape": "^4.0.0", | ||
"testling": "^1.7.1", | ||
@@ -47,0 +47,0 @@ "uglify-js": "^2.4.15" |
@@ -10,3 +10,3 @@ | ||
for (i = 1; i < 32; i++) { | ||
for (i = 1; i <= 32; i++) { | ||
allNum.push(-i) | ||
@@ -13,0 +13,0 @@ } |
@@ -11,3 +11,3 @@ | ||
for (i = 32; i <= 128; i++) { | ||
for (i = 33; i <= 128; i++) { | ||
allNum.push(-i) | ||
@@ -14,0 +14,0 @@ } |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
409391