bsh-bit-utils
v1.0.8
Published
Utility functions that do things with bits
Downloads
5
Readme
#Summary A class to manage 8 byte ArrayBuffers and some associated utilites for working with bits
import { Bits } from "bsh-bit-utils";
const bits = new Bits();
bits.setBit(3, 2);
bits.setBit(3, 3);
bits.setBit(2, 7);
const decimalBits = bits.getAllDecimal();