Ohm-Management - Projektarbeit B-ME
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.

isNumeric.js 283B

12345678
  1. "use strict";
  2. Object.defineProperty(exports, "__esModule", { value: true });
  3. var isArray_1 = require("./isArray");
  4. function isNumeric(val) {
  5. return !isArray_1.isArray(val) && (val - parseFloat(val) + 1) >= 0;
  6. }
  7. exports.isNumeric = isNumeric;
  8. //# sourceMappingURL=isNumeric.js.map