Skip to content

Instantly share code, notes, and snippets.

@davaynamore
Created March 13, 2020 07:46
Show Gist options
  • Save davaynamore/36cca62aae782fbf892aa7335628409c to your computer and use it in GitHub Desktop.
Save davaynamore/36cca62aae782fbf892aa7335628409c to your computer and use it in GitHub Desktop.
Основа для каррирования
function curry(fn, ...args) {
return (..._arg) => {
return fn(...args, ..._arg);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment