Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

quickbit-native

Package Overview
Dependencies
Maintainers
2
Versions
35
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

quickbit-native

libquickbit JavaScript bindings for Node.js

  • 1.1.1
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
2.4K
increased by38.14%
Maintainers
2
Weekly downloads
 
Created
Source

quickbit-native

https://github.com/holepunchto/libquickbit JavaScript bindings for Node.js.

npm install quickbit-native

Usage

const { get, set, indexOf } = require('quickbit-native')

const field = Buffer.alloc(256) // 2048 bits

const changed = set(field, 1000)
// true

get(field, 1000)
// true

indexOf(field, true)
// 1000

API

const b = get(field, bit)

Get the given bit, which will either be true (set) or false (unset).

const changed = set(field, bit[, value])

Set the given bit to value, which defaults to true. Returns true if the bit changed, otherwise false.

field = fill(field, value[, start[, end]])

Fill the given bit range with value. start defaults to 0 and end defaults to the bit length of the field. Returns the modified field.

const i = indexOf(field, value[, position][, index])

Return the index of the first occurrence of value, or -1 if not found. If position is given, return the first index that is greater than or equal to position. An index may be passed to improve performance.

const i = lastIndexOf(field, value[, position][, index])

Return the index of the last occurrence of value, or -1 if not found. If position is given, return the last index that is less than or equal to position. An index may be passed to improve performance.

Indexing

const index = new Index(field)

Construct an index of the bits in field.

const changed = index.update(bit)

Reindex the given bit.

License

ISC

FAQs

Package last updated on 07 Sep 2022

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc