Skip to content

Instantly share code, notes, and snippets.

@obaranovskyi
Created December 10, 2021 17:11
Show Gist options
  • Save obaranovskyi/f760e9b0104e146e83577aad520c160e to your computer and use it in GitHub Desktop.
Save obaranovskyi/f760e9b0104e146e83577aad520c160e to your computer and use it in GitHub Desktop.
import { from } from 'rxjs';
const fromPromise$ = from(
new Promise((resolve, reject) => {
console.log('Will be invoked only once, and right away.')
resolve(3);
})
);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment