UNPKG

imma

Version:

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

6 lines (4 loc) 139 B
'use strict' const map = require('./map') const zipWith = module.exports = (a, b, fn) => map(a, (value, key) => fn(value, b[key]))