UNPKG

@valeera/mathx

Version:

A math library written in TS.

4 lines (3 loc) 124 B
export const floorPowerOfTwo = (value: number): number => { return Math.pow(2, Math.floor(Math.log(value) / Math.LN2)); };