We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 23049ca commit 37a08a1Copy full SHA for 37a08a1
.eslintrc.json
@@ -14,5 +14,9 @@
14
"parserOptions": {
15
"ecmaVersion": 11,
16
"sourceType": "module"
17
+ },
18
+
19
+ "rules": {
20
+ "no-loss-of-precision": "off"
21
}
22
src/BufferStream.js
@@ -371,7 +371,9 @@ class ReadBufferStream extends BufferStream {
371
372
373
writeUint8Repeat(value, count) {
374
- throw new Error(value, "writeUint8Repeat not implemented");
+ throw new Error(
375
+ `writeUint8Repeat not implemented (value: ${value}, count: ${count})`
376
+ );
377
378
379
writeInt8(value) {
0 commit comments