You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I think we should probably merge rxjs/create and rxjs, because:
There are no name collisions
We want to export the EMPTY constant, and it's weird to export a constant from rxjs/create, and even weirder to export empty() from one spot and EMPTY from another.
One less import location
Thoughts?
The text was updated successfully, but these errors were encountered:
In 6.0, so far we have:
rxjs
: Classes, schedulers and utilities: (Observable
,Subject
,pipe
,asyncScheduler
, etc)rxjs/create
: Observable creation functions (of
,from
,fromEvent
)rxjs/operators
: Pipeable operatorsI think we should probably merge
rxjs/create
andrxjs
, because:EMPTY
constant, and it's weird to export a constant fromrxjs/create
, and even weirder to exportempty()
from one spot andEMPTY
from another.Thoughts?
The text was updated successfully, but these errors were encountered: