isFunction.js 110 Bytes
module.exports = function isFunction(fn) {
	return Object.prototype.toString.call(fn) == '[object Function]'
}