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

@tjmgregory/asserts

v0.0.1

Published

Comprehensive collection of type asserts for JavaScript and TypeScript; Inspired by Elixir

Downloads

2

Readme



Install

Node.js and the browser

npm install @tjmgregory/asserts

Deno

import { ... } from 'https://deno.land/x/asserts/mod.ts'

// TODO

Why the fork?

@sniptt/guards allows you to infer your types via if statements.

asserts enables this same type inference, but without if statements, instead by informing the compiler that we will throw if this value is not of this type, so you know for certain that it is.

Example with comment

Example without comment

Usage

Foreword on JavaScript data types and data structures

The latest ECMAScript standard defines nine types:

  • Six Data Types that are primitives, checked by typeof operator:
    • undefined: typeof instance === "undefined"
    • Boolean: typeof instance === "boolean"
    • Number: typeof instance === "number"
    • String: typeof instance === "string"
    • BigInt: typeof instance === "bigint"
    • Symbol: typeof instance === "symbol"
  • Structural Types:
    • Object: typeof instance === "object". Special non-data but structural type for any constructed object instance also used as data structures: new Object, new Array, new Map, new Set, new WeakMap, new WeakSet, new Date and almost everything made with new keyword;
    • Function non data structure, though it also answers for typeof operator: typeof instance === "function". This answer is done as a special shorthand for Functions, though every Function constructor is derived from Object constructor.
  • Structural Root Primitive
    • null: typeof instance === "object". Special primitive type having additional usage for it's value: if object is not inherited, then null is shown;

Source: https://developer.mozilla.org/en-US/docs/Web/JavaScript/Data_structures

Primitives

Sample usage:

import { primitives } from '@tjmgregory/asserts';

primitives.isNumber(val);

or

import { isNumber } from '@tjmgregory/asserts';

isNumber(val);

isBigInt

import { isBigInt } from '@tjmgregory/asserts';

let val: bigint | number;

function wantsABigint(foo: bigint) {}

isBigInt(val);
// TypeScript will infer val is now a bigint, else it would have thrown
wantsABigint(val); // Compiles

isBoolean

import { isBoolean } from '@tjmgregory/asserts';

let val: boolean | number;

function wantsABoolean(foo: boolean) {}

isBoolean(val);
// TypeScript will infer val is now a boolean, else it would have thrown
wantsABoolean(val); // Compiles

isNumber

Throws for NaN!

See also:

import { isNumber } from '@tjmgregory/asserts';

let val: number | string;

function wantsANumber(foo: number) {}

isNumber(val);
// TypeScript will infer val is now a number, else it would have thrown
wantsANumber(val); // Compiles

isString

import { isString } from '@tjmgregory/asserts';

let val: string | number;

function wantsAString(foo: string) {}

isString(val);
// TypeScript will infer val is now a string, else it would have thrown
wantsAString(val); // Compiles

isSymbol

import { isSymbol } from '@tjmgregory/asserts';

let val: symbol | string;

function wantsASymbol(foo: symbol) {}

isSymbol(val);
// TypeScript will infer val is now a symbol, else it would have thrown
wantsASymbol(val); // Compiles

isUndefined

import { isUndefined } from '@tjmgregory/asserts';

let val: undefined | null;

function wantsUndefined(foo: undefined) {}

isUndefined(val);
// TypeScript will infer val is now a undefined, else it would have thrown
wantsUndefined(val); // Compiles

Structural

Sample usage:

import { structural } from '@tjmgregory/asserts';

structural.isMap(val);

or

import { isMap } from '@tjmgregory/asserts';

isMap(val);

isNull

Answers true if and only if value === null.

isFunction

Answers true if and only if typeof value === "function".

isObject

Answers false to null!

To check for array:

isArray(term);

To check for object or null:

isObjectOrNull(term);

isArray

Throws if and only if Array.isArray(value) !== true.

isMap

Throws if and only if (value instanceof Map) !== true.

isSet

Throws if and only if (value instanceof Set) !== true.

isWeakMap

Throws if and only if (value instanceof WeakMap) !== true.

isWeakSet

Throws if and only if (value instanceof WeakSet) !== true.

isDate

Throws if and only if (value instanceof Date) !== true.

Convenience

Sample usage:

import { convenience } from '@tjmgregory/asserts';

convenience.isNonEmptyArray(val);

or

import { isNonEmptyArray } from '@tjmgregory/asserts';

isNonEmptyArray(val);

isObjectOrNull

See unit test cases.

isNonEmptyArray

See unit test cases.

isNonEmptyString

See unit test cases.

isNumberOrNaN

See unit test cases.

isInteger

See unit test cases.

isPositiveInteger

See unit test cases.

isNonNegativeInteger

See unit test cases.

isNegativeInteger

See unit test cases.

API Docs

Full API Documentation.

License

See LICENSE