Skip to content

Instantly share code, notes, and snippets.

@joeyfigaro
Created June 16, 2017 00:46
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save joeyfigaro/457caa360d0f7b3a456ca058e1562c51 to your computer and use it in GitHub Desktop.
Save joeyfigaro/457caa360d0f7b3a456ca058e1562c51 to your computer and use it in GitHub Desktop.
Ramda & Redux (when example)
function sayHello() {
return console.log('Hello.');
}
when(
equals(true, true),
sayHello
);
// -> Hello.
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment