Sample gist
const withLogs = (fn) => (a, b) => { | |
console.log(a, b); | |
return fn(a, b); | |
} | |
const add = withLogs((a, b) => a + b); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment