9 lines
227 B
JavaScript
9 lines
227 B
JavaScript
import { zipWith as zipWith$1 } from "../../array/zipWith.mjs";
|
|
//#region src/fp/array/zipWith.ts
|
|
function zipWith(...rest) {
|
|
return function(array) {
|
|
return zipWith$1(array, ...rest);
|
|
};
|
|
}
|
|
//#endregion
|
|
export { zipWith };
|