next-power-of-two
v1.0.0
Published
returns the next highest power of two
Downloads
67,862
Maintainers
Readme
next-power-of-two
For a positive number, returns the next highest power of two.
var nextPOT = require('next-power-of-two')
nextPOT(100) === 128
nextPOT(50) === 64
nextPOT(8) === 8
Usage
nextPowerOfTwo(number)
For the positive number
, returns the next highest power of two value. If number
is a power of two, it will be returned.
If number
is zero, 1
is returned. Negative numbers produce undefined results.
See Also
License
MIT, see LICENSE.md for details.