Skip to content

Instantly share code, notes, and snippets.

@vvgomes
Last active October 11, 2016 13:31
Show Gist options
  • Save vvgomes/849549ff4257adb2d5c9ea87753461bc to your computer and use it in GitHub Desktop.
Save vvgomes/849549ff4257adb2d5c9ea87753461bc to your computer and use it in GitHub Desktop.
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