Important: This documentation covers Yarn 1 (Classic).
For Yarn 2+ docs and migration guide, see yarnpkg.com.

Package detail

clz-buffer

emilbayes250.4kISC1.0.0

Count leading zeros in a Buffer (clz)

clz, nlz, leading, zeros, buffer, uint8array, typedarray, array

readme

clz-buffer

Build Status

Count leading zeros in a Buffer (clz)

Usage

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

API

var n = clz(buf)

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].

Install

npm install clz-buffer

License

ISC