Count leading zeros in a Buffer (clz)
var clz = require('clz-buffer')
clz([0b00001000]) // === 4
clz([0b10000000]) // === 0
clz([0b10000000, 0]) // === 0
clz([0, 0]) // === 16
clz(Buffer.from([0, 0, 0])) // === 24
Counts the number of leading zeros. Stops at the first 1-bit. Works for any
array-like type with values in the domain [0, 255]
.
npm install clz-buffer