fast-bin

0.3.0 • Public • Published

fast-bin

Quickly Convert an Array of Numbers into their Minimal Binary Representations

install

npm install fast-bin

usage

binarize an array of numbers

const binarize = require('fast-bin/binarize');
 
const input = [0, 1, 2, 3, 4];
const { data: output, nbits } = binarize({ data: input });
// output is '000001010011100'
// nbits is 3

unbinarize a string

const unbinarize = require('fast-bin/unbinarize');
 
const data = '00011011';
const nbits = 2;
const arr = unbinarize({ data, nbits });
// arr is [0, 1, 2, 3]

support

Post an issue at https://github.com/danieljdufour/fast-bin

Readme

Keywords

Package Sidebar

Install

npm i fast-bin

Weekly Downloads

95

Version

0.3.0

License

CC0-1.0

Unpacked Size

12.7 kB

Total Files

7

Last publish

Collaborators

  • danieljdufour