Skip to content

Instantly share code, notes, and snippets.

@ruffle1986
Created December 30, 2017 22:21
Show Gist options
  • Save ruffle1986/99299b26e287c00475e16728f1cd66ed to your computer and use it in GitHub Desktop.
Save ruffle1986/99299b26e287c00475e16728f1cd66ed to your computer and use it in GitHub Desktop.
const multiply = (a, b) => a * b;
const logger = (wrapped) => (...args) => {
const result = wrapped(...args);
console.log('the result is ', result);
return result;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment