(func: T)
| 8 | * @returns {boolean} |
| 9 | */ |
| 10 | export function isFunction<T>(func: T): func is T & ((...args: unknown[]) => unknown) { |
| 11 | return typeof func === 'function'; |
| 12 | } |
| 13 | |
| 14 | /** |
| 15 | * Creates throttle function that enforces a maximum number of times a function (`func`) can be called over time (`wait`). |
no outgoing calls
no test coverage detected
searching dependent graphs…