More Typo

This commit is contained in:
be5invis 2025-03-07 17:53:29 -08:00
parent 82099c8f0d
commit 627a2193a1
2 changed files with 6 additions and 2 deletions

View file

@ -1,6 +1,10 @@
export function maskBit(x, y) {
return x & (1 << y);
}
export function maskOffBit(x, y) {
return x & ~(1 << y);
}
export function maskBits(x, y) {
return x & y;
}