1.0.2 • Published 8 years ago

just-type v1.0.2

Weekly downloads
1
License
MIT
Repository
github
Last release
8 years ago

just-type

type checking.

import type from 'just-type';

function hello() {
    console.log('hello type');
}

type(); // undefined
type(undefined); // undefined
type(null); // null
type(''); // string
type('hello'); // string
type(0); // number
type(true); // boolean
type({}); // object
type([]); // array
type(hello); // function
type(/\./); // regexp