You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
16 lines
776 B
16 lines
776 B
2 years ago
|
import assertString from './util/assertString';
|
||
|
import { decimal } from './alpha';
|
||
|
export default function isFloat(str, options) {
|
||
|
assertString(str);
|
||
|
options = options || {};
|
||
|
|
||
|
var _float = new RegExp("^(?:[-+])?(?:[0-9]+)?(?:\\".concat(options.locale ? decimal[options.locale] : '.', "[0-9]*)?(?:[eE][\\+\\-]?(?:[0-9]+))?$"));
|
||
|
|
||
|
if (str === '' || str === '.' || str === '-' || str === '+') {
|
||
|
return false;
|
||
|
}
|
||
|
|
||
|
var value = parseFloat(str.replace(',', '.'));
|
||
|
return _float.test(str) && (!options.hasOwnProperty('min') || value >= options.min) && (!options.hasOwnProperty('max') || value <= options.max) && (!options.hasOwnProperty('lt') || value < options.lt) && (!options.hasOwnProperty('gt') || value > options.gt);
|
||
|
}
|
||
|
export var locales = Object.keys(decimal);
|