mirror of
https://github.com/0x5eal/rbxts-pako.git
synced 2025-04-04 10:50:59 +01:00
removed unnecessary uint cast
This commit is contained in:
parent
18250b5298
commit
4c159cfb16
1 changed files with 1 additions and 1 deletions
|
@ -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;
|
||||
|
|
Loading…
Add table
Reference in a new issue