* 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)
| 1585 | * @returns {Boolean} answer to: is a function? |
| 1586 | */ |
| 1587 | function isFunction(functionToCheck) { |
| 1588 | var getType = {}; |
| 1589 | return functionToCheck && getType.toString.call(functionToCheck) === '[object Function]'; |
| 1590 | } |
| 1591 | |
| 1592 | /** |
| 1593 | * Get CSS computed property of the given element |
no outgoing calls
no test coverage detected