Node module. typeOf('a string') == 'string', typeOf([]) == 'array', etc.. Also supports named functions detections aka javascript classes
npm install typeofsmall node.js module that extends functionality of native typeof
inspired by Batman.js typeOf util
``bash`
$ npm install typeof
`javascript
var typeOf = require('typeof');
console.log(typeOf("a string"));
console.log(typeOf([1, 2, 3, "array"]));
console.log(typeOf(null));
`
```
"string"
"array"
"null"