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.
29 lines
1.0 KiB
29 lines
1.0 KiB
2 years ago
|
"use strict";
|
||
|
|
||
|
Object.defineProperty(exports, "__esModule", {
|
||
|
value: true
|
||
|
});
|
||
|
exports.default = isFloat;
|
||
|
exports.locales = void 0;
|
||
|
|
||
|
var _assertString = _interopRequireDefault(require("./util/assertString"));
|
||
|
|
||
|
var _alpha = require("./alpha");
|
||
|
|
||
|
function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }
|
||
|
|
||
|
function isFloat(str, options) {
|
||
|
(0, _assertString.default)(str);
|
||
|
options = options || {};
|
||
|
var float = new RegExp("^(?:[-+])?(?:[0-9]+)?(?:\\".concat(options.locale ? _alpha.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);
|
||
|
}
|
||
|
|
||
|
var locales = Object.keys(_alpha.decimal);
|
||
|
exports.locales = locales;
|