Skip to content

Instantly share code, notes, and snippets.

@qmzik
Last active July 11, 2021 12:18
Show Gist options
  • Save qmzik/f62317b08ab087ad880e7908727c5463 to your computer and use it in GitHub Desktop.
Save qmzik/f62317b08ab087ad880e7908727c5463 to your computer and use it in GitHub Desktop.
const source = function (subscriber: Observer<number>) {
subscriber.next(1);
subscriber.next(2);
subscriber.next(3);
subscriber.complete();
subscriber.next(4); // Упс, этого не должно быть
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment