"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
/**
* Check if a value is a Function
*
* @param value value to check
* @returns `true` if `obj` is a function
*/functionisFunction(value) {
returntypeof value === 'function';
}
exports.isFunction = isFunction;