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

nullish-math

v0.1.0

Published

`nullish-math` is a lightweight TypeScript package that provides basic math operations with support for `null` and `undefined` values and an immutable, chainable API. It is useful when working with numeric data that may contain nullish values, as it ensur

Downloads

42

Readme

nullish-math

nullish-math is a lightweight TypeScript package that provides basic math operations with support for null and undefined values and an immutable, chainable API. It is useful when working with numeric data that may contain nullish values, as it ensures that any calculations involving nullish values result in null values.

Installation

To install nullish-math, use one of the following commands:

bun add nullish-math
npm install nullish-math
pnpm add nullish-math
yarn add nullish-math

Usage

To use nullish-math, simply import the nm() function from the package:

import { nm } from 'nullish-math'

You can then use the nm() function to create a new NullishMath object with an initial value:

const value = nm(42)

You can chain together multiple math operations using the add(), subtract(), multiply(), and divide() methods:

const result = nm(42).add(21).multiply(2).subtract(10).end() // 116

// null results in null
const result = nm(42).add(null).multiply(2).subtract(10).end() // null

// undefined results in null
const result = nm(undefined).add(21).multiply(2).subtract(10).end() // null

If any of the values passed to the math operation methods (add(), subtract(), multiply(), divide()) are nullish, the final value will be null.

API

nm(value: number | null | undefined): NullishMath

The nm() function creates a new NullishMath object with an initial value.

add(number: NullishMath | number | null | undefined): NullishMath

Returns a new instance of NullishMath with the sum of the current value and the given number.

addMany(...nums: Array<NullishMath | number | null | undefined>): NullishMath

Returns a new instance of NullishMath with the sum of the current value and the given numbers.

eq(toCompare: NullishMath | number | null | undefined): boolean

Returns true if the result equals toCompare, treats null and undefined as equals.

lt(toCompare: NullishMath | number | null | undefined): boolean | null

Returns true if the result is strictly less than toCompare, returns null if either number is nullish.

lte(toCompare: NullishMath | number | null | undefined): boolean | null

Returns true if the result is less than or equal to toCompare, returns null if either number is nullish.

gt(toCompare: NullishMath | number | null | undefined): boolean | null

Returns true if the result is strictly greater than toCompare, returns null if either number is nullish.

gte(toCompare: NullishMath | number | null | undefined): boolean | null

Returns true if the result is greater than or equal to toCompare, returns null if either number is nullish.

neq(toCompare: NullishMath | number | null | undefined): boolean

Returns true if the result doesn’t equal toCompare, treats null and undefined as equals.

subtract(number: NullishMath | number | null | undefined): NullishMath

Returns a new instance of NullishMath with the difference of the current value and the given number.

subtractMany(...nums: Array<NullishMath | number | null | undefined>): NullishMath

Returns a new instance of NullishMath with the difference of the current value and the given numbers.

multiply(number: NullishMath | number | null | undefined): NullishMath

Returns a new instance of NullishMath with the product of the current value and the given number.

multiplyMany(...nums: Array<NullishMath | number | null | undefined>): NullishMath

Returns a new instance of NullishMath with the product of the current value and the given numbers.

divide(number: NullishMath | number | null | undefined): NullishMath

Returns a new instance of NullishMath with the quotient of the current value and the given number.

divideMany(...nums: Array<NullishMath | number | null | undefined>): NullishMath

Returns a new instance of NullishMath with the quotient of the current value and the given numbers.

end(): number | null

Returns the final value of the NullishMath instance. If any of the values passed to the math operation methods are null or undefined, the final value will be null.

NullishMath.average(Array<NullishMath | number | null | undefined>, options?: { treatNullishAsZero?: boolean }): number | null

Calculates the average of the provided numbers. By default, nulls are excluded from the average. This can be changed by setting the treatNullishAsZero option. With this flag, nullish numbers get counted as a 0 and thus impact the average.

Returns null on division by zero unless treatNullishAsZero is set (in which case it returns 0).

NullishMath.unwrap(NullishMath | number | null | undefined): number | null

Converts the input to either number | null. General-purpose equivalent of nm.end()

Development

nullish-math uses bun

bun install
# bun run test