1.5.0 • Published 7 years ago

type-of-extra v1.5.0

Weekly downloads
2
License
ISC
Repository
github
Last release
7 years ago

type-of-extra

https://www.npmjs.com/package/type-of-extra

About

A set of additional functionalities for typeof that differentiates between types within primatives, built using typescript.

e.g.

// typeof
console.log( typeof([1,2]) ); //'object'

//typeOf
console.log( typeOf([1,2]) ); //'array'

Installation

$ npm install --save type-of-extra

Usage

var typeOf = require('type-of-extra').typeOf;

console.log(typeOf('foo'));  //'string'
console.log(typeOf([1,2,4]); //'array'

Build

npm run build

Test

npm test