mirror of
https://codeup.aliyun.com/67c68d4e484ca2f0a13ac3c1/ydc/jsowell-charger-web.git
synced 2026-04-25 05:25:12 +08:00
8 lines
283 B
JavaScript
8 lines
283 B
JavaScript
|
|
"use strict";
|
||
|
|
Object.defineProperty(exports, "__esModule", { value: true });
|
||
|
|
var isArray_1 = require("./isArray");
|
||
|
|
function isNumeric(val) {
|
||
|
|
return !isArray_1.isArray(val) && (val - parseFloat(val) + 1) >= 0;
|
||
|
|
}
|
||
|
|
exports.isNumeric = isNumeric;
|
||
|
|
//# sourceMappingURL=isNumeric.js.map
|