We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ccb73d5 commit 94c3ec1Copy full SHA for 94c3ec1
src/binaryDecode.js
@@ -2,4 +2,4 @@
2
// Closure may analyze through the WASM_BINARY_DATA placeholder string into this
3
// function, leading into incorrect results.
4
/** @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; }
+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