RxJS version: 5.5
I've been using lettable operators since 5.5 was in beta, it was great. But I have a few concerns regarding the way to import them.
Are we supposed to do this:
import { map } from 'rxjs/operators';
or:
import { map } from 'rxjs/operators/map';
Either way, it works the same. But for the sake of consistency, shouldn't there be only one way of doing this?