1.0.1 • Published 1 year ago

@hazae41/bitset v1.0.1

Weekly downloads
-
License
MIT
Repository
github
Last release
1 year ago

Bitset

Utilities for arithmetic bitwise operations in JavaScript

npm i @hazae41/bitset

Node Package 📦

Current features

  • 100% TypeScript and ESM
  • Unit-tested
  • Big-endian and little-endian
  • Export to uint32
  • Builder pattern

Usage

const bitset = new Bitset(0x00, 8)

const result = bitset
  .toggleLE(1) // 0000 0010
  .toggleBE(1) // 0100 0010
  .unsign() // >>> 0
  .value

const last6 = bitset
  .last(6) // 00 0010
  .toString() // "000010"