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

@alloc/is

v3.1.5

Published

Runtime type checking

Downloads

911

Readme

@alloc/is

Runtime type checking for TypeScript (inspired by @sindresorhus/is)

  • isomorphic (no DOM or NodeJS types)
  • type guards (for type narrowing)
  • fully tested (each possible type is tested on every type checker)

Usage

First, do yarn add is@npm:@alloc/is if you never use the npm CLI. Otherwise, you need to import @alloc/is instead of is.

import { is } from 'is'

//
// Get the type name of a value.
// Object types are camel case.
//

is.what(0) // 'number'
is.what({}) // 'Object'

//
// Check the constructor of a value.
//

is.type(0, Number) // true
is.type({}, Object) // true
is.type([], Object) // false

//
// Find a constructor in a value's prototype chain.
//

is.kind([], Object) // true

//
// Check if the value is a specific type.
//

is.number(0) // true
is.array([]) // true

See the tests for expected behavior. They are very readable, just search for test( to jump between the tests of each is. function.

API

  • is.what(value) Get the type name of a value
  • is.type(value, constructor) Check the constructor of a value
  • is.kind(value, constructor) Find a constructor in a value's prototype chain
  • is.array(value) Same as Array.isArray
  • is.asyncFunction(value)
  • is.asyncIterable(value) Returns true for objects returned by Symbol.asyncIterator functions
  • is.bigint(value)
  • is.boolean(value)
  • is.class(value) Returns true for class functions (but not transpiled classes)
  • is.date(value)
  • is.defined(value) The opposite of is.undefined
  • is.emptyObject(value) Returns true for plain objects with no keys
  • is.error(value)
  • is.generator(value) Returns true for objects returned by generator functions
  • is.generatorFunction(value)
  • is.function(value)
  • is.infinite(value)
  • is.integer(value)
  • is.iterable(value) Returns true for objects returned by Symbol.iterator functions
  • is.map(value)
  • is.nan(value) Same as Number.isNaN
  • is.null(value)
  • is.number(value) Returns true for any number (but never NaN)
  • is.object(value) Returns true for any object or function (but never null)
  • is.plainObject(value) Returns true for objects created by {}, new Object, or Object.create(null)
  • is.promise(value)
  • is.promiseLike(value) Returns true for objects with a then method
  • is.regExp(value)
  • is.safeInteger(value) Same as Number.isSafeInteger
  • is.set(value)
  • is.string(value)
  • is.symbol(value)
  • is.undefined(value)
  • is.weakMap(value)
  • is.weakSet(value)