$ npm install nearest-power-of-twoGiven a number, returns the nearest power of two.
var npot = require('nearest-power-of-two')
npot(3) === 4
The package exports a single function which takes a number and returns a number. Only works for numbers less than 2^32.
MIT