UNPKG

@arrows/array

Version:
11 lines (10 loc) 224 B
declare type First_ = <T>(arr: T[]) => T; /** * Retrieves the first element of the array. * * @param arr Initial array * @returns First element */ declare const first_: First_; export { first_ }; export default first_;