type-of

2.0.1 • Public • Published

type-of

Type assertions aka less-broken typeof.

Build Status Dependency Status NPM version

browser support

Example

var type = require('type-of')
 
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'

License

MIT

Readme

Keywords

none

Package Sidebar

Install

npm i type-of

Weekly Downloads

369,288

Version

2.0.1

License

MIT

Last publish

Collaborators

  • forbeslindesay