UNPKG
math-toolbox
Version:
latest (1.12.0)
1.12.0
1.11.0
1.10.0
1.9.0
1.8.0
1.7.0
1.6.0
1.5.0
1.4.0
1.3.0
1.2.0
1.1.0
1.0.2
1.0.1
1.0.0
Lightweight and modular math toolbox
github.com/terkelg/math-toolbox
terkelg/math-toolbox
math-toolbox
/
src
/
next-power-of-two.js
12 lines
(10 loc)
•
243 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
/** * Returns the next power of two value. * *
@param
{
number
}
v
- Value. *
@return
{
number
} The next power of two. */
function
nextPowerOfTwo
(
v
) {
return
Math
.
pow
(
2
,
Math
.
ceil
(
Math
.
log
(v) /
Math
.
log
(
2
))) }
export
{ nextPowerOfTwo }