frontend/.pnpm-store/v3/files/63/349cd2232f4c5f39842eb461eb9d166130b9f132a2b8b6371ebea854c04f2b961f4fc23839459b10d5e9a763b4d9c5111b5c1e8a4cb617714c96a5d645f4ad

7 lines
224 B
Plaintext

/** PURE_IMPORTS_START _isArray PURE_IMPORTS_END */
import { isArray } from './isArray';
export function isNumeric(val) {
return !isArray(val) && (val - parseFloat(val) + 1) >= 0;
}
//# sourceMappingURL=isNumeric.js.map