@ahassani/type
v0.0.1
Published
Cross-browser type assertions (less broken typeof)
Downloads
4
Readme
type
Type assertions aka less-broken typeof
.
Example
var type = require('@ahassani/type');
var obj = new Date;
if (type(obj) == 'date') ...
API
type(new Date) == 'date'
type({}) == 'object'
type(null) == 'null'
type(undefined) == 'undefined'
type("hey") == 'string'
type(true) == 'boolean'
type(false) == 'boolean'
type(12) == 'number'
type(type) == 'function'
type(/asdf/) == 'regexp'
type((function(){ return arguments })()) == 'arguments'
type([]) == 'array'
type(document.createElement('div')) == 'element'
type(NaN) == 'nan'
type(new Error('Ups! Something wrong...')) == 'error'
type(new Buffer) == 'buffer'