(value)
| 3 | * @param {*} value The param to check if it is a function |
| 4 | */ |
| 5 | export function isFunction(value) { |
| 6 | return typeof value === 'function'; |
| 7 | } |
| 8 | |
| 9 | /** |
| 10 | * Checks if `value` is classified as a `Number` object. |
no outgoing calls
no test coverage detected
searching dependent graphs…