UNPKG

mapslice

Version:

Slices a given image into tiles to be used for a interactive map display. (including command-line tool)

8 lines (7 loc) 125 B
'use strict' module.exports = function isPowerOfTwo (x) { if (x < 1) { return false } return (x & (x - 1)) === 0 }