Created
August 23, 2020 07:18
-
-
Save jmaicaaan/158c8a6ea3dac6742ca2319bf20f0900 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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