Skip to content

Instantly share code, notes, and snippets.

@wescleymatos
Created June 6, 2020 23:28
Show Gist options
  • Save wescleymatos/e32d0b9150320edfb0e94d26700365cf to your computer and use it in GitHub Desktop.
Save wescleymatos/e32d0b9150320edfb0e94d26700365cf to your computer and use it in GitHub Desktop.
Composição de funções JavaScript
function composicao(...funcoes) {
return function(valor) {
return funcoes.reduce((acc, fn) => {
return fn(acc);
}, valor);
};
};
//const composicao = (...funcoes) => valor => funcoes.reduce((acc, fn) => fn(acc), valor);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment