UNPKG

pure-fun

Version:

A collection of pure functions/helpers with 0 dependencies

6 lines (5 loc) 136 B
/** * Returns the initial (first) item in the input array */ declare const initial: (arr: any[]) => any; export default initial;