UNPKG

pure-fun

Version:

A collection of pure functions/helpers with 0 dependencies

8 lines (7 loc) 238 B
/** * Join together all input arrays into one new array. * This will created nested array structure! * For flat array structure use pure-fun/arrays/flatten */ declare const join: (...arrs: any[]) => any[]; export default join;