* Tells if a given input is a number * @method * @memberof Popper.Utils * @param {*} input to check * @return {Boolean}
(n)
| 4094 | |
| 4095 | |
| 4096 | function isNumeric(n) { |
| 4097 | return n !== '' && !isNaN(parseFloat(n)) && isFinite(n); |
| 4098 | } |
| 4099 | /** |
| 4100 | * Set the style to the given popper |
| 4101 | * @method |
no outgoing calls
no test coverage detected
searching dependent graphs…