@sunbird-rc/bitstring
v3.2.1
Published
Bitstring module tweaked to work with TypeScript and NestJS
Downloads
2
Keywords
Readme
Bitstring
This bitstring module is a hacky tweak to make the original bitstring package play nice with typescript.
Install
To install get the latest version from NPM:
npm install @sunbird-rc/bitstring
To install locally for development:
git clone https://github.com/techsavvyash/bitstring.git
cd bitstring
npm install
API
set(position, on)
Sets the value of a bit for the given position to the given boolean.
bitstring.set(1, true);
get(position)
Gets the value of a bit for the given position.
bitstring.get(3);
encodeBits()
Compresses and encodes bits to a base64url encoded string.
await bitstring.encodeBits();
decodeBits({encoded})
Decodes and uncompresses a given base64url encoded string to a Uint8Array.
await Bitstring.decodeBits({encoded});
compressBits()
Compresses bits to a Uint8Array.
await bitstring.compressBits();
uncompressBits({compressed})
Uncompresses compressed bits.
await Bitstring.uncompressBits({compressed});
Contribute
Please follow the existing code style.
PRs accepted.
If editing the Readme, please conform to the standard-readme specification.
Commercial Support
Commercial support for this library is available upon request from Digital Bazaar: [email protected]
License
BSD-3-Clause © Digital Bazaar