Check does the given Javascript Object is a function.
npm install jsmicro-is-functionCheck does the given Javascript Object (array, object, string, etc) is a function.
Check does the given Javascript Function (array, object, string, etc) is not a function.
``bash`
bower install --save jsmicro-is-function
`html`
`bash`
npm install --save jsmicro-is-function
`js
const obj = require('jsmicro-is-function');
// Available in the global object.
isFunction(function() {}); // true
isFunction(23322333); // false
isNotFunction(23234); // true
// Also available in the export object.
obj.isFunction(function() {}); // true
obj.isFunction(23322333); // false
obj.isNotFunction(23333); // true
`
#### v1.0.1 - May 21, 2016
* Added .npmignore
#### v1.0.0 - May 19, 2016`
* Initial release.