mapToVoid
import { mapToVoid } from '@angular-ru/cdk/rxjs'; of([1, 2, 3]) .pipe(mapToVoid()) .subscribe((result) => { console.log(result); // undefined });
Last updated 3 years ago
Was this helpful?