UNPKG

float-regex

Version:

regular expression to match floating point numbers in javascript notation

3 lines (1 loc) 67 B
module.exports = /[-+]?(?:\d*\.?\d+|\d+\.?\d*)(?:[eE][-+]?\d+)?/;