UNPKG

pure-fun

Version:

A collection of pure functions/helpers with 0 dependencies

6 lines (5 loc) 148 B
/** * Returns the head (everything but the list item) items in the array. */ declare const head: (arr: any[]) => any[]; export default head;