boizz / realtype

Can be used to distinguish between these types: boolean, number, string, function, array, date, regexp, object, error.

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

realtype

npm package NPM downloads Dependency Status FOSSA Status

Can be used to distinguish between these types: boolean, number, string, function, array, date, regexp, object, error.

Usage

npm i --save realtype
var realtype = require('realtype');
realtype(['Heleth']);
// => array

API

realtype(obj: any): 'boolean' | 'number' | 'string' | 'function' | 'array' | 'date' | 'regexp' | 'object' | 'error'

Return real type.

License

MIT

FOSSA Status

About

Can be used to distinguish between these types: boolean, number, string, function, array, date, regexp, object, error.

License:MIT License


Languages

Language:JavaScript 100.0%