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