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