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 need tree-shaking like
import { zip } from 'rxjs/observable/zip';
to replace Observable.zip
but I can't find Observable.create ,when I use
import {Observable} from 'rxjs'
Observable.create()
it's import all prototypes in Observable and can't tree-shaking...
ps. I need a function to customize an Observable.