UNPKG

140 BJavaScriptView Raw
1const RE = /^(?:[-+]?(?:[0-9]+))?(?:\.[0-9]*)?(?:[eE][\+\-]?(?:[0-9]+))?$/;
2export const isFloatString = (x) => x.length > 0 && RE.test(x);