Skip to content

Latest commit

 

History

History
24 lines (13 loc) · 376 Bytes

README.md

File metadata and controls

24 lines (13 loc) · 376 Bytes

buffer-byte-frequency

Count the frequency of each byte in a buffer

Usage

'use strict'

var freq = require('buffer-byte-frequency')

freq(Buffer.from([0, 1, 2, 3])) // => [1, 1, 1, 1, 0, 0, 0, 0, 0, ...]

API

freq(buf)

Counts the frequency of each byte, returning a 256 element array with counts for each byte.

License

ISC