Skip to content

Instantly share code, notes, and snippets.

@dengjonathan
Last active November 21, 2016 21:23
Show Gist options
  • Save dengjonathan/805961e78b8a2a190023ee5dd02d5783 to your computer and use it in GitHub Desktop.
Save dengjonathan/805961e78b8a2a190023ee5dd02d5783 to your computer and use it in GitHub Desktop.
ramda curry
//Ramda
const R = require('ramda');
//this is the same as
const makeRen = obj => giveHero(
'Darth Vader',
giveName('Kylo', obj)
);
// this
const makeRenCurry = R.compose(giveHero('Darth Vader', giveName('Kylo'));
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment