nearest-power-of-two
v1.0.0
Published
get the nearest power of two
Downloads
5
Readme
nearest-power-of-two
Given a number, returns the nearest power of two.
var npot = require('nearest-power-of-two')
npot(3) === 4
API
require('nearest-power-of-two')(Number) -> Number
The package exports a single function which takes a number and returns a number. Only works for numbers less than 2^32.
license
MIT