* Tells if a given input is a number * @method * @memberof Popper.Utils * @param {*} input to check * @return {Boolean}
(n)
| 2623 | * @return {Boolean} |
| 2624 | */ |
| 2625 | function isNumeric(n) { |
| 2626 | return n !== '' && !isNaN(parseFloat(n)) && isFinite(n); |
| 2627 | } |
| 2628 | |
| 2629 | /** |
| 2630 | * Set the style to the given popper |
no outgoing calls
no test coverage detected