UNPKG

imma

Version:

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

7 lines (4 loc) 155 B
'use strict' const zipWith = require('./zipWith') const combine = (a, b) => [ a, b ] const zip = module.exports = (a, b) => zipWith(a, b, combine)