operators/do.js

  1. import { Observable } from '../Observable';
  2. import { passThroughNext } from './passThroughNext';
  3. /**
  4. * Will run some callback before passing the current value to the subscription
  5. *
  6. * @memberof operators
  7. *
  8. * @param {Observable} source$
  9. * @param {Function} runCallback
  10. * @returns {Observable}
  11. *
  12. * @example
  13. * doStuff(obs$, (value) => console.log(value))
  14. * .subscribe((sameValue) => console.log('Will log the same value: ', sameValue))l
  15. */
  16. export const doStuff = function (source$, runCallback) {
  17. return passThroughNext(source$, function ({ next }, value) {
  18. runCallback(value);
  19. next(value);
  20. });
  21. };
  22. Observable.do = doStuff;
  23. Observable.prototype.do = function (runCallback) {
  24. return doStuff(this, runCallback);
  25. };