UNPKG

@arrows/array

Version:
11 lines (10 loc) 220 B
declare type Rest_ = <T>(arr: T[]) => T[]; /** * Creates new array without the first element. * * @param arr Initial array * @returns New array */ declare const rest_: Rest_; export { rest_ }; export default rest_;