export default function isNumerical(text: any) { if (isNaN(text)) { return false; } return true; }