removed unnecessary uint cast

This commit is contained in:
Vitaly Puzrin 2014-02-20 22:31:37 +04:00
parent 18250b5298
commit 4c159cfb16

View file

@ -9,7 +9,7 @@ function makeTable() {
for(var k =0; k < 8; k++){
c = ((c&1) ? (0xEDB88320 ^ (c >>> 1)) : (c >>> 1));
}
table[n] = c >>> 0;
table[n] = c;
}
return table;