"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.default = isFunction; /** * 判断值是否为函数 * @return 是否为函数 */ function isFunction(value) { return typeof value === 'function'; } //# sourceMappingURL=is-function.js.map