Is this real?
You can easily figure out which string is a real number with is-real.
const is_real = require('is_real')
console.log(is_real(123)) // true
console.log(is_real(+123.12)) // true
console.log(is_real(-123.00)) // true
console.log(is_real('123')) // true
console.log(is_real('abc')) // false
- Nothing
If there's no problem using javascript and npm, it will work well.
- MIT License
You can use it the way you want.
- Github : QuqqU