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