@hazae41/bitset
v1.0.1
Published
Utilities for arithmetic bitwise operations in JavaScript
Downloads
51
Maintainers
Readme
Bitset
Utilities for arithmetic bitwise operations in JavaScript
npm i @hazae41/bitset
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"