isFunction.ts 88 Bytes
export function isFunction(x: any): x is Function {
  return typeof x === 'function';
}