When using RXJS which is the best way to import lettable operators? Is there any difference in performance between both options bellow?
import {map} from 'rxjs/operators';
import {map} from 'rxjs/operators/map';
I am using the rxjs version 5.5.6
When using RXJS which is the best way to import lettable operators? Is there any difference in performance between both options bellow?
import {map} from 'rxjs/operators';
import {map} from 'rxjs/operators/map';
I am using the rxjs version 5.5.6