Skip to content

Commit 94c3ec1

Browse files
committed
eslint
1 parent ccb73d5 commit 94c3ec1

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/binaryDecode.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,4 +2,4 @@
22
// Closure may analyze through the WASM_BINARY_DATA placeholder string into this
33
// function, leading into incorrect results.
44
/** @noinline */
5-
function binaryDecode(bin) { for(var i=0,l=bin.length,o=new Uint8Array(l);i<l;++i) o[i]=bin.charCodeAt(i)-1; return o; }
5+
function binaryDecode(bin) { for(var i = 0, l = bin.length, o = new Uint8Array(l); i < l; ++i) o[i] = bin.charCodeAt(i) - 1; return o; }

0 commit comments

Comments
 (0)