Skip to content

Instantly share code, notes, and snippets.

@zenius
Created May 5, 2019 08:59
Show Gist options
  • Save zenius/9fbeb8bc58bfd28626b2f6c6aa9ea15f to your computer and use it in GitHub Desktop.
Save zenius/9fbeb8bc58bfd28626b2f6c6aa9ea15f to your computer and use it in GitHub Desktop.
/*Unary function */
function unary(fn){
return function unaryDecorator(first){
return fn.call(this, first);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment