Skip to content

Instantly share code, notes, and snippets.

@oneillci
Created January 3, 2017 22:05
Show Gist options
  • Save oneillci/fbee66e79f01c52ec3d8de76b905b66f to your computer and use it in GitHub Desktop.
Save oneillci/fbee66e79f01c52ec3d8de76b905b66f to your computer and use it in GitHub Desktop.
const curry = (fun, arg) => (...args) => fun(...[arg, ...args]);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment