Skip to content

Instantly share code, notes, and snippets.

@Beraliv
Last active February 3, 2019 19:45
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save Beraliv/f61a8ba6daa89ea4710c525623622724 to your computer and use it in GitHub Desktop.
Save Beraliv/f61a8ba6daa89ea4710c525623622724 to your computer and use it in GitHub Desktop.
function consoleT() {
return function(reducer) {
return function(acc, v) {
console.log(acc, v);
return reducer(acc, v);
};
};
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment