typeof
v1.0.0
Published
Node module. typeOf('a string') == 'string', typeOf([]) == 'array', etc.. Also supports named functions detections aka javascript classes
Downloads
277,966
Readme
typeof
small node.js module that extends functionality of native typeof inspired by Batman.js typeOf util
Usage:
$ npm install typeof
var typeOf = require('typeof');
console.log(typeOf("a string"));
console.log(typeOf([1, 2, 3, "array"]));
console.log(typeOf(null));
"string"
"array"
"null"