UNPKG

@woosh/meep-engine

Version:

Pure JavaScript game engine. Fully featured and production ready.

9 lines 264 B
/** * Is the number a power of two? * e.g. 2,4,8,16 etc. * NOTE: only valid for non-negative integers, includes 0 * @param {number} value * @returns {boolean} */ export function isPowerOfTwo(value: number): boolean; //# sourceMappingURL=isPowerOfTwo.d.ts.map