Skip to content

Instantly share code, notes, and snippets.

@NetanelBasal
Created December 22, 2019 07:05
Show Gist options
  • Save NetanelBasal/46d8266f3fa6d9be15dc1ea6ed6cbe3e to your computer and use it in GitHub Desktop.
Save NetanelBasal/46d8266f3fa6d9be15dc1ea6ed6cbe3e to your computer and use it in GitHub Desktop.
function debug(tag: string) {
return tap({
next(value) {
console.log(`%c[${tag}: Next]`, "background: #009688; color: #fff; padding: 3px; font-size: 9px;", value)
},
error(error) {
console.log(`%[${tag}: Error]`, "background: #E91E63; color: #fff; padding: 3px; font-size: 9px;", error)
},
complete() {
console.log(`%c[${tag}]: Complete`, "background: #00BCD4; color: #fff; padding: 3px; font-size: 9px;")
}
})
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment