UNPKG
star-wh
Version:
latest (1.0.0)
1.0.0
star-wh
/
bin
/
node_modules
/
rxjs
/
_esm2015
/
internal
/
operators
/
switchMapTo.js
5 lines
•
258 B
JavaScript
View Raw
1
2
3
4
5
import
{ switchMap }
from
'./switchMap'
;
export
function
switchMapTo
(
innerObservable, resultSelector
) {
return
resultSelector ?
switchMap
(
() =>
innerObservable, resultSelector) :
switchMap
(
() =>
innerObservable); }
//# sourceMappingURL=switchMapTo.js.map