Skip to content

Instantly share code, notes, and snippets.

@rmoskal
Last active December 5, 2017 22:36
Show Gist options
  • Save rmoskal/d42b4d8fe4b603bacc30ad4ee5dc0137 to your computer and use it in GitHub Desktop.
Save rmoskal/d42b4d8fe4b603bacc30ad4ee5dc0137 to your computer and use it in GitHub Desktop.
function functionalWay(color) {
fetch(color)
.then(JSON.parse)
.then(transformFirst)
.then(sendToClient)
.then(remote_log_wrapped('log'))
.catch(remote_log_wrapped('error'))
}
function remote_log_wrapped(level) {
return msg => remotelog(level, msg)
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment