UNPKG

@valeera/mathx

Version:

A math library written in TS.

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