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

bitwise-rotation

v1.0.1

Published

Rotate values with a bitwise rotation.

Downloads

17

Readme

bitwise-rotation

Rotate values with a bitwise rotation.

In computer programming, a circular shift (or bitwise rotation) is a shift operator that shifts all bits of its operand. Unlike an arithmetic shift, a circular shift does not preserve a number's sign bit or distinguish a number's exponent from its significand (sometimes referred to as the mantissa). — Wikipedia

How to Use

import bitwiseRotation from 'bitwise-rotation';

// Set the bit-width/length; max of `32`, min of `0`.
const rotationObject = bitwiseRotation(8);

// Returns an object with rotate right (`ror`) and rotate left (`rol`) methods.
const { ror, rol } = rotationObject;

// Rotate a value by an amount.
rol(101, 2); // 149
ror(101, 2); // 89

Visual Example

import { rolInt8, rorInt8 } from 'bitwise-rotation';

const value = 1;
value.toString(2);             // 00000001
rolInt8(value, 1).toString(2); // 00000010
rolInt8(value, 2).toString(2); // 00000100
rolInt8(value, 3).toString(2); // 00001000
rolInt8(value, 4).toString(2); // 00010000
rorInt8(value, 4).toString(2); // 00010000
rorInt8(value, 3).toString(2); // 00100000
rorInt8(value, 2).toString(2); // 01000000
rorInt8(value, 1).toString(2); // 10000000

API

bitwiseRotation(bitWidth) (default)

A function to specify a custom bitWidth that returns a rotationObject.

  • bitWidth: An integer between [0, 32] that specifies the limit for rotating values.

bitWidth cannot be larger than 32 because operands of all bitwise operators are converted to signed 32-bit integers in two's complement format. — MDN

rotationObject

An object with the following 2 methods for rotating bytes:

  • ror(value, rotation): Rotate a byte to the right by the specified amount of rotation.

    • value: Decimal representation of a value to be rotated.

    • rotation: The amount to rotate the value by.

  • rol(value, rotation): Rotate a byte to the left by the specified amount of rotation.

    • value: Decimal representation of a byte to be rotated.

    • rotation: The amount to rotate the value by.

Both methods return a decimal representation of a value rotated.

rorInt8(value, rotation)

Convenience method for rotating an 8-bit value right.

rolInt8(value, rotation)

Convenience method for rotating an 8-bit value left.

rorInt16(value, rotation)

Convenience method for rotating a 16-bit value right.

rolInt16(value, rotation)

Convenience method for rotating a 16-bit value left.

rorInt32(value, rotation)

Convenience method for rotating a 32-bit value right.

rolInt32(value, rotation)

Convenience method for rotating a 32-bit value left.