Created
March 21, 2017 22:02
-
-
Save mrblueblue/4fa78b9562c9b30661583290428a6624 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
| import R from "ramda" | |
| function transducer (xform, stepper, init, input) { | |
| const reducer = (accum, value) => stepper(accum, value) | |
| const transduce = R.compose(R.reduce(reducer, init), xform) | |
| return transduce(input) | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment