Skip to content

Instantly share code, notes, and snippets.

@NetanelBasal
Created January 24, 2019 18:05
Show Gist options
  • Star 8 You must be signed in to star a gist
  • Fork 2 You must be signed in to fork a gist
  • Save NetanelBasal/c1133767e4c655003cb37ac8b0869dae to your computer and use it in GitHub Desktop.
Save NetanelBasal/c1133767e4c655003cb37ac8b0869dae to your computer and use it in GitHub Desktop.
const log = (tag: string) => tap(
next => console.log(`%c[${tag}: Next]`, 'color: #4CAF50;', next),
error => console.log(`%c${tag}: Error]`, 'color: #F44336;', error),
() => console.log(`%c[${tag}: Complete]`, 'color: #2196F3;')
);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment