rjhilgefort
11/14/2017 - 9:19 PM

evolveArray.js

evolve, but for tuples

// NOTE: Ramda repl

console.clear()

const evolveArray = zipWith(call);

console.log(
  evolveArray([identity, toUpper])(['foo', 'bar'])
)