UNPKG

expect

Version:
9 lines (7 loc) 156 B
/** * Returns true if the given object is a function. */ function isFunction(object) { return typeof object === 'function' } export default isFunction