(value: any)
| 9 | } |
| 10 | |
| 11 | export function isFunction(value: any): // eslint-disable-next-line @typescript-eslint/ban-types |
| 12 | value is Function { |
| 13 | return typeof value === 'function'; |
| 14 | } |
| 15 | |
| 16 | export function noop() {} |
| 17 |
no outgoing calls
no test coverage detected