Last active
October 31, 2021 14:01
-
-
Save dhananjay431/631403293c28c2bc5f6658caf2276173 to your computer and use it in GitHub Desktop.
snippets
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"Observable": { | |
"prefix": "$ob", | |
"body": [ | |
"const observable = new Observable(subscriber => {", | |
" subscriber.next(1);", | |
" subscriber.next(2);", | |
" subscriber.next(3);", | |
" setTimeout(() => {", | |
" subscriber.next(4);", | |
" subscriber.complete();", | |
" }, 1000);", | |
"});" | |
], | |
"description": "Observable" | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment