I\'m currently trying to learn Angular 2, typescript, promises, etc. I\'ve setup a small app for developer tools and a service that just returns hard-coded data. This is to
You can use the following code to delay values in RxJs 6 by n
ms.
0
)return timer(n);
return of(value).pipe(delay(n));
or
return timer(n).pipe(mapTo(value));
return from(promise).pipe(delay(n));
put .toPromise()
on any of the previous examples after the pipe
.
return timer(n).toPromise();
return of(value).pipe(delay(n)).toPromise();
etc.