mirror of
https://github.com/MetaFam/TheGame.git
synced 2026-01-23 05:08:01 -05:00
4 lines
127 B
TypeScript
4 lines
127 B
TypeScript
// true if the number is a power of 2
|
|
export const isPow2 = (int: number): boolean => (
|
|
int > 0 && (int & (int - 1)) === 0
|
|
); |