Skip to content

Instantly share code, notes, and snippets.

@jmaicaaan
Created August 23, 2020 07:18
Show Gist options
  • Save jmaicaaan/158c8a6ea3dac6742ca2319bf20f0900 to your computer and use it in GitHub Desktop.
Save jmaicaaan/158c8a6ea3dac6742ca2319bf20f0900 to your computer and use it in GitHub Desktop.
const transducer = pipe(
mapReduce(addBy1)(combinerConcat),
mapReduce(multiplyBy2)(combinerConcat),
filterReduce(getItemsBelow10)(combinerConcat)
);
const res = data
.reduce(transducer, [])
.reduce(sum, 0)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment