I would like to use RxJS just.
For this I need Observable.just(null)what is impossible to do with Observable.from().
I'm trying to
import 'rxjs/add/operator/just';
But it is not present where it should be - node_modules/rxjs/add/operatortherefore it will not compile.
How can I add this statement?
source
share