UNPKG

pure-fun

Version:

A collection of pure functions/helpers with 0 dependencies

6 lines (5 loc) 121 B
/** * Returns the last item (tail) in an array */ declare const tail: (arr: any[]) => any[]; export default tail;