UNPKG

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