Actualizacion maquina principal
[dotfiles/.git] / .config / coc / extensions / node_modules / coc-prettier / node_modules / rxjs / internal / util / isNumeric.js
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