Utilities for arithmetic bitwise operations in JavaScript
npm install @hazae41/bitsetUtilities for arithmetic bitwise operations in JavaScript
``bash`
npm i @hazae41/bitset
`typescript
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"
``