mirror of
https://github.com/Zagrios/bs-manager.git
synced 2026-07-03 14:08:25 +02:00
4 lines
133 B
TypeScript
4 lines
133 B
TypeScript
export function isFunction(value: any): value is Function {
|
|
return !!(value && value.constructor && value.call && value.apply)
|
|
}
|