Skip to content

Commit 620f3e3

Browse files
committed
Fix typo for big-endian JS bindings
1 parent 1f8cae2 commit 620f3e3

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

templates/javascript/src/deserialize.js.erb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ const LITTLE_ENDIAN = (() => {
1414

1515
if (uint8[0] === 0x44) {
1616
return true;
17-
} else if (uInt8[0] === 0x11) {
17+
} else if (uint8[0] === 0x11) {
1818
return false;
1919
} else {
2020
throw new Error("Mixed endianness");

0 commit comments

Comments
 (0)