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

point-utilities

v0.0.2

Published

Dependency-free utility functions for performing comparison operations

Downloads

6,357

Readme

point-utilities

Dependency-free utility functions for performing comparison operations

This package exists primarily in support of the suspense package, though it may be useful in other contexts.

Installation

# NPM
npm install point-utilities

# Yarn
yarn add point-utilities

Configuration

Configure the utility to compare points of a specific type. For example...

To compare numeric points:

import { configure } from "point-utilities";

const utils = configure<number>((a: number, b: number) => a - b);

To compare string points:

import { configure } from "point-utilities";

const utils = configure<string>((a: string, b: string) => a.localeCompare(b));

To compare BigInt points (e.g. using extra-bigint):

import { compare } from "extra-bigint";
import { configure } from "point-utilities";

const utils = configure<BigInt>(compare);

API

utils.compare(a: Interval<Point>, b: Interval<Point>): number

Base comparison function (used for other utility types below).

utils.compare(1, 1); // 0
utils.compare(0, 2); // -1
utils.compare(5, 1); // 1

utils.equals(a: Point, b: Point): boolean

Compares two points for equality.

utils.equals(1, 1); // true
utils.equals(1, 3); // false

utils.findIndex(sortedPoints: Point[], point: Point): number

Find the index of a point within a sorted list of points. If no match found, -1 is returned.

utils.findIndex([1, 2], 2); // 1
utils.findIndex([1, 2, 3], 3); // 2
utils.findIndex([10, 20, 30], 18); // -1

utils.findNearestIndex(sortedPoints: Point[], point: Point): number

Find the index of a point within a sorted list of points. If no match found, the index of the point with the closest value is returned.

utils.findNearestIndex([1], 1); // 0
utils.findNearestIndex([1, 2, 3], 2); // 1
utils.findNearestIndex([10, 20, 30], 26); // 2
utils.findNearestIndex([10, 20, 30], 40); // 2

utils.findNearestIndexAfter(sortedPoints: Point[], point: Point): number

Within a sorted list of points, find the index of the first point that is larger than the value specified.

utils.findNearestIndexAfter([1, 2, 3], 1); // 0
utils.findNearestIndexAfter([10, 20, 30], 11); // 1
utils.findNearestIndexAfter([10, 20, 30], 29); // 2
utils.findNearestIndexAfter([10, 20, 30], 31); // 3

utils.findNearestIndexBefore(sortedPoints: Point[], point: Point): number

Within a sorted list of points, find the index of the last point that is smaller than the value specified.

utils.findNearestIndexBefore([1], 0); // -1
utils.findNearestIndexBefore([1, 2, 3], 1); // 0
utils.findNearestIndexBefore([10, 20, 30], 21); // 1
utils.findNearestIndexBefore([10, 20, 30], 31); // 2

utils.greaterThan(a: Point, b: Point): boolean

Compares two points to see if one is greater than the other.

utils.greaterThan(3, 0); // true
utils.greaterThan(1, 1); // false
utils.greaterThan(2, 8); // false

utils.greaterThanOrEqualTo(a: Point, b: Point): boolean

Compares two points to see if one is greater or equal to the other.

utils.greaterThanOrEqualTo(3, 0); // true
utils.greaterThanOrEqualTo(0, 0); // true
utils.greaterThanOrEqualTo(4, 5); // false

utils.lessThan(a: Point, b: Point): boolean

Compares two points to see if one is less than the other.

utils.lessThan(0, 2); // true
utils.lessThan(5, 5); // false
utils.lessThan(2, 0); // false

utils.lessThanOrEqualTo(a: Point, b: Point): boolean

Compares two points to see if one is less or equal to the other.

utils.lessThanOrEqualTo(3, 4); // true
utils.lessThanOrEqualTo(4, 4); // true
utils.lessThanOrEqualTo(5, 0); // false