4 lines
88 B
Plaintext
4 lines
88 B
Plaintext
export function isFunction(x: any): x is Function {
|
|
return typeof x === 'function';
|
|
}
|