We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9f68498 commit 2c61512Copy full SHA for 2c61512
1 file changed
README.md
@@ -118,7 +118,7 @@ const parser = new Parser()
118
// Unsigned 8-bit integer
119
.uint8("b")
120
// Signed 16-bit integer (big endian)
121
- .int16be("c");
+ .int16be("c")
122
// signed 64-bit integer (big endian)
123
.int64be("d")
124
```
@@ -554,7 +554,7 @@ you need to call `.useContextVars()` to enable it.
554
.array("data", {
555
type: "int32",
556
length: function() {
557
- return this.$parent.header.length
+ return this.$parent.header.length;
558
}
559
});
560
@@ -573,7 +573,7 @@ you need to call `.useContextVars()` to enable it.
573
574
575
576
- return this.$root.header.length
+ return this.$root.header.length;
577
578
}),
579
0 commit comments