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

dis-isa

v1.4.3

Published

isa types for javascript

Downloads

1,611

Readme

dis isa

isa types for javascript

API

isBoolean(any) : boolean

Method that takes in a value and returns whether or not it is boolean.

import types from 'dis-isa';

types.isBoolean(true); // true
types.isBoolean(false); // true
types.isBoolean(1); // false
types.isBoolean(undefined); // false

isUndefined(any) : boolean

Method that takes an input and returns whether or not it is undefined.

import types from 'dis-isa';

types.isUndefined(1); // false
types.isUndefined(undefined); // true

isNull(any) : boolean

Method that takes an input and returns whether or not it is null

import types from 'dis-isa';

types.isNull(1); // false
types.isNull(null); // true
types.isNull(undefined); // false

isRegex(any) : boolean

Method that takes an input and returns whether or not it is a regular expression

import types from 'dis-isa';

types.isRegex(1); // false
types.isRegex(/some/); // true
types.isRegex(new RegExp('some')); // true

isArray(any) : boolean

Method that takes an input and returns whether or not it is an array. The check will try to default to the built in isArray if available, otherwise an equivalent check is performed.

import types from 'dis-isa';

types.isArray(1); // false
types.isArray([]); // true
types.isArray(new Array()); // true

isFunction(any) : boolean

Method that takes an input and returns whether or not it is a function.

import types from 'dis-isa';

function test() {
}

types.isFunction(1); // false
types.isFunction(test); // true
types.isFunction(new test()); // false

isString(any) : boolean

Method that takes an input and returns whether or not it is a string.

import types from 'dis-isa';

types.isString(1); // false
types.isString("test"); // true
types.isString(new String("test")); // true

isDate(any) : boolean

Method that takes an input and returns whether or not it is a Date.

import types from 'dis-isa';

types.isDate(1); // false
types.isDate("test"); // false
types.isDate(new Date()); // true

isObject(any) : boolean

Method that takes an input and returns whether or not it is an object. And object is any one of the following:

  • literal object
  • object instance
  • array
  • null
import types from 'dis-isa';

types.isObject(1); // false
types.isObject("test"); // true
types.isObject(new String("test")); // true
types.isObject(null); // true

isPlainObject(any) : boolean

Method that takes an input and returns whether or not it is a plain object. A plain object can be:

  • A literal object. {}
  • Objects created with new Object() and Object.create
import types from 'dis-isa';

types.isPlainObject(1); // false
types.isPlainObject("test"); // false
types.isPlainObject(new Object()); // true
types.isPlainObject(Object.create(null)); // true
types.isPlainObject({}); // true

isError(any) : boolean

Method that takes an input and returns whether or not it is an Error. Errors are instances of Error, including exceptions.

import types from 'dis-isa';

var err = new Error();

types.isError(1); // false
types.isError(err); // true

typeName(any) : string

Method that takes an input and returns its string type representation. The string type is all lower case. Useful for extending the supported types.

import types from 'dis-isa';

types.typeName(1); // 'number'
types.typeName(null); // 'null'
types.typeName(function() {}); // 'function'

toString(any) : string

Method that takes an input and returns the raw type signature. Useful for extending the supported types.

import types from 'dis-isa';

types.toString(1); // '[object Number]'
types.toString(null); // '[object Null]'
types.toString(function() {}); // '[object Function]'

Licensed under MIT