Created
May 23, 2019 12:09
-
-
Save kosich/d341fbc804a02270df1550702c7c52c1 to your computer and use it in GitHub Desktop.
startWith vs endWith bugreport
This file contains 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
const { rxObserver } = require('api/v0.3'); | |
const { of } = require('rxjs'); | |
const { startWith, endWith } = require('rxjs/operators'); | |
of(':').pipe( | |
startWith('abc'), | |
endWith('def') | |
) | |
.subscribe(rxObserver()); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment