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 c64991a commit bc4acf8Copy full SHA for bc4acf8
FastIntegerCompression.js
@@ -50,7 +50,7 @@ FastIntegerCompression.compress = function(input) {
50
var c = input.length;
51
var buf = new ArrayBuffer(FastIntegerCompression.computeCompressedSizeInBytes(input));
52
var view = new Int8Array(buf);
53
- var pos = 0
+ var pos = 0;
54
for(var i = 0; i < c; i++) {
55
var val = input[i];
56
if (val < (1 << 7)) {
0 commit comments