Last change
on this file since 6a80231 was 6a3a178, checked in by Ema <ema_spirova@…>, 3 years ago |
initial commit
|
-
Property mode
set to
100644
|
File size:
283 bytes
|
Line | |
---|
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 |
---|
Note:
See
TracBrowser
for help on using the repository browser.