JSMicro - Is Function
isFunction(object)
Check does the given Javascript Object (array, object, string, etc) is a function.
isNotFunction(object)
Check does the given Javascript Function (array, object, string, etc) is not a function.
Browser Usage
bower install --save jsmicro-is-function
NodeJS Usage
npm install --save jsmicro-is-function
const obj = ; // Available in the global object.; // true; // false; // true // Also available in the export object.obj; // trueobj; // falseobj; // true
Changelogs
v1.0.1 - May 21, 2016
- Added .npmignore
v1.0.0 - May 19, 2016
- Initial release.