Idea of the project: if someone wants to order a project development, here you can send an application.
/**
* Tells if a given input is a number
* @method
* @memberof Popper.Utils
* @param {*} input to check
* @return {Boolean}
*/
export default function isNumeric(n) {
return n !== '' && !isNaN(parseFloat(n)) && isFinite(n);
}