How would you delay .forkJoin() in rxjs?
.forkJoin()
Here is what I\'ve got but want to use delay() operator with that?
return forkJoin( this.cal
Try thiz
import { delay } from 'rxjs/operators'; return forkjoin(call1(),call2(),call3).pipe(delay(500));