mirror of
https://github.com/JamesIves/github-pages-deploy-action.git
synced 2023-12-15 20:03:39 +08:00
7 lines
224 B
JavaScript
7 lines
224 B
JavaScript
/** 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
|