@bayerjs/rxjs-debug
v0.3.0-alpha.1
Published
Debug operator for observables
Maintainers
Readme
@bayerjs/rxjs-debug
Debug RxJS Observables with the debug package. Used internally by the Bayer.js library to, well, debug observables.
Usage
const values$ = of(something);
values$.pipe(debug("@bayerjs/core", "Value from something"));The debug operator will use the first argument as the name for debug, and the second as a message to print on every
value, as well as when erroring out or completing.
