BoundNodeCallbackObservable.js 297 B

1234567
  1. import { Observable, bindNodeCallback } from 'rxjs';
  2. export class BoundNodeCallbackObservable extends Observable {
  3. static create(func, selector = undefined, scheduler) {
  4. return bindNodeCallback(func, selector, scheduler);
  5. }
  6. }
  7. //# sourceMappingURL=BoundNodeCallbackObservable.js.map