UNPKG

imma

Version:

A collection of functions for dealing with native arrays and objects immutably

4 lines (3 loc) 110 B
'use strict' const zipWith = module.exports = (a, b, fn) => a.map((value, index) => fn(value, b[index]))