Skip to content

Instantly share code, notes, and snippets.

@sanbornhilland
Created September 9, 2017 15:01
Show Gist options
  • Select an option

  • Save sanbornhilland/a24b966c2b9da487ea8ab2a491890f53 to your computer and use it in GitHub Desktop.

Select an option

Save sanbornhilland/a24b966c2b9da487ea8ab2a491890f53 to your computer and use it in GitHub Desktop.
ES6 Partial Application
function partiallyApply (...args) {
const func = args.shift()
return (...otherArgs) => func(...args, ...otherArgs)
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment