npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

bitflag-js

v1.0.0

Published

A bitflag library for JavaScript

Downloads

1,314

Readme

bitflag-js

This package provides a class for working with bitflag fields. These structures are very useful as a way to condense a list of boolean values into a single number. They are perfect matches for things like user flags, permissions, and more.

bitflag-js is written in TypeScript and uses bigints instead of numbers.

Usage

Install this package by running

npm install bitflag-js

Then import and use it in your code like this:

import { BitField } from "bitflags-js";

const UserBadges = {
	VERIFIED: 1n << 0n,
	CONTRIBUTOR: 1n << 1n,
	SUPPORTER: 1n << 2n,
	VIP: 1n << 3n,
};

const bitfield = new BitField();
bitfield.add(UserBadges.VERIFIED);
bitfield.add(UserBadges.CONTRIBUTOR);

if (bitfield.has(UserBadges.VERIFIED)) {
	console.log("This user is verified!");
}

console.log(bitfield.value);

Types

This package is developed in TypeScript and exports two helper types.

BitFlags

Use the BitFlags type when you are defining a list of bit flags.

import type { BitFlags } from "bitflag-js";

const UserBadges: BitFlags = {
	VERIFIED: 1n << 0n,
	CONTRIBUTOR: 1n << 1n,
	SUPPORTER: 1n << 2n,
	VIP: 1n << 3n,
};

BitFlagResolvable

Use the BitFlagResolvable type to define a list of accepted values the BitField class can resolve.

import type { BitFlagResolvable } from "bitflag-js";

interface User {
	// ...
	flags: BitField;
}

export function addFlagToUser(user: User, flag: BitFlagResolvable) {
	user.flags.add(flag);
}

For more information about the resolvable types, refer to the documentation for BitField#resolve.

BitField Static APIs

The BitField class has static API methods available.

static resolve(...values: BitFlagResolvable[]): bigint {

Resolves an array of BitFlagResolvable to a bitfield value. This method accepts the following types:

  • number
  • bigint
  • BitField instance
  • An array of any of the above
const first = 1n << 0n;
const second = 1n << 1n;
const value = BitField.resolve(first, second);

All the instance methods call this method internally as a convenience.

BitField Instance APIs

constructor(...value: BitFlagResolvable[])

Creates a new BitField instance with an optional initial value.

const bitfield = new BitField();
const bitfield = new BitField(1n << 0n, 1n << 1n);

get value(): bigint

Returns the computed value of the bitfield.

set(flag: BitFlagResolvable, value: boolean)

Sets or unsets a flag.

const bitfield = new BitField();
bitfield.set(1n << 0n, true);
bitfield.set(1n << 1n, false);

add(...flags: BitFlagResolvable[])

Sets one or more flags.

const bitfield = new BitField();
bitfield.add(1n << 0n);
bitfield.add(1n << 1n);

has(...flags: BitFlagResolvable[])

Checks if the bitfield has one or more flags.

const bitfield = new BitField();
bitfield.add(1n << 0n);

bitfield.has(1n << 0n); // true
bitfield.has(1n << 1n); // false

remove(...flags: BitFlagResolvable[])

Removes one or more flags.

const bitfield = new BitField(1n << 0n, 1n << 1n);
bitfield.remove(1n << 0n);

mask(...flags: BitFlagResolvable[])

Returns the union of the bitfield and the given flags. This is useful when you have a single field for your flags that mixes public and private values.

const flags = {
	PRIVATE: 1n << 0n,
	PUBLIC: 1n << 1n,
	PUBLIC_TWO: 1n << 2n,
};

const PUBLIC_API_MASK = [flags.PUBLIC, flags.PUBLIC_TWO];

const bitfield = new BitField(Flags.PRIVATE, Flags.PUBLIC);

bitfield.mask(PUBLIC_API_MASK); // returns Flags.PUBLIC, because it's the only shared value between the bitfield value and the PUBLIC_API_MASK variable.

This field does not modify the underlying value. To do that, use BitField#set.

\*[Symbol.iterator]()

This is less intimidating than it looks! It lets you reference flags in a BitField using the for...of syntax.

const bitfield = new BitField();
bitfield.add(1n << 0n);
bitfield.add(1n << 1n);

for (const flag of bitfield) {
	console.log(flag);
}

toJSON()

Returns the value of the bitfield as a number if able, or a string if not.

const bitfield = new BitField();
bitfield.add(1n << 0n);
bitfield.add(1n << 1n);

bitfield.toJSON(); // a number

bitfield.add(1n << 64n);
bitfield.toJSON(); // a string (value > Number.MAX_SAFE_INTEGER)

To force the return value to always be a string, use BitField#toString.

toString()

Returns the value of the bitfield as a string.

const bitfield = new BitField();
bitfield.add(1n << 0n);
bitfield.add(1n << 1n);

bitfield.toString(); // a string