We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f228420 commit b39d1bdCopy full SHA for b39d1bd
esm/misc-low-level.js
@@ -2,7 +2,7 @@ import { _structure_size, _padded_size, _unpack_struct_from, struct, assert, _un
2
3
export class SuperBlock {
4
constructor(fh, offset) {
5
- let version_hint = struct.unpack_from('<B', fh, offset + 8);
+ let version_hint = struct.unpack_from('<B', fh, offset + 8)[0];
6
var contents;
7
if (version_hint == 0) {
8
contents = _unpack_struct_from(SUPERBLOCK_V0, fh, offset);
0 commit comments