UNPKG

@tetcoin/util

Version:
16 lines (15 loc) 345 B
/** * @name isFunction * @summary Tests for a `function`. * @description * Checks to see if the input value is a JavaScript function. * @example * <BR> * * ```javascript * import { isFunction } from '@tetcoin/util'; * * isFunction(() => false); // => true * ``` */ export default function isFunction(value: any): value is Function;