(value: any)
| 40 | * Check whether the input is a function. |
| 41 | */ |
| 42 | export function isFunction(value: any): value is Function { |
| 43 | return typeof value === 'function'; |
| 44 | } |
| 45 | |
| 46 | /** |
| 47 | * Convert a kebab-cased string to camelCased. |
no outgoing calls
no test coverage detected
searching dependent graphs…