a zip code crypto-currency system good for red ONLY

12345678910
  1. import { shareReplay as higherOrder } from '../operators/shareReplay';
  2. /**
  3. * @method shareReplay
  4. * @owner Observable
  5. */
  6. export function shareReplay(bufferSize, windowTime, scheduler) {
  7. return higherOrder(bufferSize, windowTime, scheduler)(this);
  8. }
  9. ;
  10. //# sourceMappingURL=shareReplay.js.map