UNPKG

@arrows/array

Version:
11 lines (10 loc) 230 B
declare type Size_ = <T>(arr: T[]) => number; /** * Retrieves the size (length) of the array. * * @param arr Initial array * @returns Array size (length) */ declare const size_: Size_; export { size_ }; export default size_;