isNumeric.js 269 Bytes Raw Blame History Permalink 1 2 3 4 5 6 7 8 9 10 11 12 13 "use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports["default"] = void 0; var isNumeric = function isNumeric(value) { return !isNaN(parseFloat(value)) && isFinite(value); }; var _default = isNumeric; exports["default"] = _default;