Created
August 23, 2020 05:46
-
-
Save jmaicaaan/6a33e7d5f3b82ce7214b45c8dda8e972 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
// 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