* Tells if a given input is a number * @method * @memberof Popper.Utils * @param {*} input to check * @return {Boolean}
(n)
| 2611 | * @return {Boolean} |
| 2612 | */ |
| 2613 | function isNumeric(n) { |
| 2614 | return n !== '' && !isNaN(parseFloat(n)) && isFinite(n); |
| 2615 | } |
| 2616 | |
| 2617 | /** |
| 2618 | * Set the style to the given popper |
no outgoing calls
no test coverage detected