Skip to content

mattdesl/next-power-of-two

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

1 Commit
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

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.

About

returns the next highest power of two

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published