blob: 287e8871c8d74c7c29a28bf0e6e708950de77e9b [file] [log] [blame]
export function isFunction(x: any): x is Function {
return typeof x === 'function';
}