UNPKG

pure-fun

Version:

A collection of pure functions/helpers with 0 dependencies

7 lines (6 loc) 231 B
/** * Zips together 2 input arrays via either the provided zipper function, * or by performing a standard zipping operation. */ declare const zip: (arr1: any[], arr2: any[], zipper: Function) => any[]; export default zip;