1.0.0 • Published 9 years ago

next-power-of-two v1.0.0

Weekly downloads
2,850
License
MIT
Repository
github
Last release
9 years ago

next-power-of-two

frozen

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

NPM

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.