Skip to content

Instantly share code, notes, and snippets.

@safareli
Created September 15, 2015 16:58
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 safareli/0bab78ae1046eba9c08f to your computer and use it in GitHub Desktop.
Save safareli/0bab78ae1046eba9c08f to your computer and use it in GitHub Desktop.
R.thunk = function(f,...args){
return function(){
return f.apply(this,args)
}
}
R.thunk(console.log,'log this only')('dont log this');
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment