mirror of
https://github.com/0x5eal/rbxts-pako.git
synced 2025-04-04 10:50:59 +01:00
removed unnecessary uint64 cast
This commit is contained in:
parent
b03bbe55a7
commit
8a6a0f004c
2 changed files with 2 additions and 2 deletions
|
@ -22,7 +22,7 @@ function adler32(adler, buf, len, pos) {
|
|||
s2 %= 65521;
|
||||
}
|
||||
|
||||
return (s1 | (s2 << 16)) >>> 0;
|
||||
return (s1 | (s2 << 16));
|
||||
}
|
||||
|
||||
|
||||
|
|
|
@ -506,7 +506,7 @@ function inflate(strm, flush) {
|
|||
return (((q >>> 24) & 0xff) +
|
||||
((q >>> 8) & 0xff00) +
|
||||
((q & 0xff00) << 8) +
|
||||
((q & 0xff) << 24)) >>> 0;
|
||||
((q & 0xff) << 24));
|
||||
}
|
||||
|
||||
/*
|
||||
|
|
Loading…
Add table
Reference in a new issue