isFunction.ts 88 B

123
  1. export function isFunction(x: any): x is Function {
  2. return typeof x === 'function';
  3. }