Last active
October 11, 2016 13:31
-
-
Save vvgomes/849549ff4257adb2d5c9ea87753461bc to your computer and use it in GitHub Desktop.
This file contains 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 { curry, map, compose } from "ramda"; | |
export const composeEach = curry((fs, g) => | |
map(f => compose(g, f), fs) | |
); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment