fj-typeof FP-style typeof Installation npm install fj-typeof --save Usage var typeOf = require('fj-typeof'); typeOf('function', typeOf); // => true typeOf('string')('foo'); // => true typeOf('object')({}); // => true typeOf('undefined')(undefined); // => true