byte-data-stream
Advanced tools
Comparing version 0.0.8-rokka0 to 0.0.9-rokka0
{ | ||
"name": "byte-data-stream", | ||
"version": "0.0.8-rokka0", | ||
"version": "0.0.9-rokka0", | ||
"description": "Readable & writable byte data stream", | ||
@@ -5,0 +5,0 @@ "main": "index.js", |
@@ -119,3 +119,3 @@ const var_int = require('signed-varint'); | ||
if(len <= 0) return; | ||
let buf = new ArrayBuffer(buf.length+len); | ||
let buf = new ArrayBuffer(this.buf.byteLength+len); | ||
new Uint8Array(buf).set(this.buf); | ||
@@ -122,0 +122,0 @@ delete this.buf; |
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
10292