Skip to content

Instantly share code, notes, and snippets.

@jmaicaaan
Created August 23, 2020 05:46
Show Gist options
  • Save jmaicaaan/6a33e7d5f3b82ce7214b45c8dda8e972 to your computer and use it in GitHub Desktop.
Save jmaicaaan/6a33e7d5f3b82ce7214b45c8dda8e972 to your computer and use it in GitHub Desktop.
// From here
const res = data
.map(
pipe(addBy1, multiplyBy2)
)
.filter(getItemsBelow10)
.reduce(sum, 0)
// To here
const res = data
.reduce(mapReduce(addBy1)(combinerConcat), [])
.reduce(mapReduce(multiplyBy2)(combinerConcat), [])
.reduce(filterReduce(getItemsBelow10)(combinerConcat), [])
.reduce(sum, 0)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment