Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save LayZeeDK/583c5f8ed5bed9767ced414a47e21f4f to your computer and use it in GitHub Desktop.
Save LayZeeDK/583c5f8ed5bed9767ced414a47e21f4f to your computer and use it in GitHub Desktop.
RxJS ≥6 version
import { defer, Observable, of, Subject } from "rxjs";
import { delay, multicast } from "rxjs/operators";
const source = defer(() => of(
Math.floor(Math.random() * 100)
)).pipe(
delay(0),
);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment