Skip to content

Instantly share code, notes, and snippets.

@Mizzlr
Created June 16, 2016 08:48
Show Gist options
  • Select an option

  • Save Mizzlr/00e9c6d73d8b2e21d7b78b8c588ba0aa to your computer and use it in GitHub Desktop.

Select an option

Save Mizzlr/00e9c6d73d8b2e21d7b78b8c588ba0aa to your computer and use it in GitHub Desktop.
// onTrue and onFalse are also some function
var TRUE = function (onTrue) {
return function (onFalse) {
return onTrue(VOID);
};
};
var FALSE = function (onTrue) {
return function (onFalse) {
return onFalse(VOID);
};
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment