A lightweight package for type checking in JS
npm install type-is-checkjavascript
`using npm:
`
$ npm i -S type-is-check
`using bower:
`
$ bower install type-is-check
`Example
`
is.num(555); // true
is.str("String"); // true
is.func(function() {}); // true
is.obj({}); // true
is.arr([1,2,3]); // true
`API
##### is.num(numToTest)
##### is.str(stringToTest)
##### is.func(functionToTest)
##### is.obj(objectToTest)
##### is.arr(arrayToTest)Tests
`
$ npm run test
``