Comparing version 1.5.2 to 1.5.3
@@ -73,6 +73,5 @@ const ascii = require('./lib/ascii') | ||
for (let n = len - (len % 4); i < n; i += 4) { | ||
const x = a.getUint32(i) | ||
const y = b.getUint32(i) | ||
if (x < y) return -1 | ||
if (x > y) return 1 | ||
const x = a.getUint32(i, LE) | ||
const y = b.getUint32(i, LE) | ||
if (x !== y) break | ||
} | ||
@@ -79,0 +78,0 @@ |
{ | ||
"name": "b4a", | ||
"version": "1.5.2", | ||
"version": "1.5.3", | ||
"description": "Bridging the gap between buffers and typed arrays", | ||
@@ -5,0 +5,0 @@ "main": "index.js", |
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
23812
672