byte-data-stream
Advanced tools
Comparing version 2.3.2 to 2.3.3
@@ -216,3 +216,3 @@ import varint from 'signed-varint'; | ||
} | ||
a.forEach(n => this.writeUint8(n)); | ||
this.writeBytes(Uint8Array.from(a)); | ||
} | ||
@@ -227,5 +227,5 @@ writeVarUint(val, oppositeEndian = false) { | ||
} | ||
a.forEach(n => this.writeUint8(n)); | ||
this.writeBytes(Uint8Array.from(a)); | ||
} | ||
} | ||
//# sourceMappingURL=ByteStream.js.map |
{ | ||
"name": "byte-data-stream", | ||
"version": "2.3.2", | ||
"version": "2.3.3", | ||
"description": "Readable & writable byte data stream", | ||
@@ -5,0 +5,0 @@ "main": "dist/index.js", |
import varint from 'signed-varint'; | ||
import varuint from 'varint'; | ||
import { ByteStream } from './ByteStream.js'; | ||
@@ -4,0 +5,0 @@ export enum DataType { |
Sorry, the diff of this file is not supported yet
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
65028
26
1211