mirror of
https://github.com/MetaFam/TheGame.git
synced 2026-01-26 22:59:34 -05:00
5 lines
168 B
TypeScript
5 lines
168 B
TypeScript
// true if the number is a power of 2
|
|
export const isPow2 = (int: number): boolean => (
|
|
// eslint-disable-next-line no-bitwise
|
|
int > 0 && (int & (int - 1)) === 0
|
|
); |