Skip to content

Instantly share code, notes, and snippets.

@obaranovskyi
Created December 10, 2021 09:46
Show Gist options
  • Save obaranovskyi/bed6eefb011cf5a798e3b1cd1dfe7a1f to your computer and use it in GitHub Desktop.
Save obaranovskyi/bed6eefb011cf5a798e3b1cd1dfe7a1f to your computer and use it in GitHub Desktop.
import { from } from 'rxjs';
from(Promise.resolve(2))
.subscribe({
next: console.log,
error: console.error,
complete: () => console.log(`complete`)
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment