UNPKG

@thi.ng/checks

Version:

Collection of 70+ type, feature & value checks

7 lines (6 loc) 201 B
import { isNumberArray } from "./is-number-array.js"; import { isTypedArray } from "./is-typedarray.js"; const isNumericArray = (x) => isNumberArray(x) || isTypedArray(x); export { isNumericArray };