Every new change
This commit is contained in:
6
node_modules/rxjs/_esm5/internal/util/isNumeric.js
generated
vendored
Normal file
6
node_modules/rxjs/_esm5/internal/util/isNumeric.js
generated
vendored
Normal file
@ -0,0 +1,6 @@
|
||||
/** 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
|
Reference in New Issue
Block a user