1.0.2 • Published 8 years ago
just-type v1.0.2
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