* Check if a variable is a function.
(variable)
| 65 | * Check if a variable is a function. |
| 66 | */ |
| 67 | function isFunction(variable) { |
| 68 | return Object.prototype.toString.call(variable) === "[object Function]"; |
| 69 | } |
| 70 | /** |
| 71 | * Check if a variable is an HTMLElement or SVGElement. |
| 72 | */ |
no outgoing calls
no test coverage detected
searching dependent graphs…