UNPKG

@thi.ng/checks

Version:
6 lines (5 loc) 161 B
const RE = /^(?:[-+]?(?:[0-9]+))?(?:\.[0-9]*)?(?:[eE][\+\-]?(?:[0-9]+))?$/; const isFloatString = (x) => x.length > 0 && RE.test(x); export { isFloatString };