* Check if the given variable is a function * @method * @memberof Popper.Utils * @argument {Any} functionToCheck - variable to check * @returns {Boolean} answer to: is a function?
(functionToCheck)
| 3062 | */ |
| 3063 | |
| 3064 | function isFunction(functionToCheck) { |
| 3065 | var getType = {}; |
| 3066 | return functionToCheck && getType.toString.call(functionToCheck) === '[object Function]'; |
| 3067 | } |
| 3068 | /** |
| 3069 | * Get CSS computed property of the given element |
| 3070 | * @method |
no outgoing calls
no test coverage detected
searching dependent graphs…