import { of } from 'rxjs'; import { tap, map } from 'rxjs/operators'; const source = of(1, 2, 3, 4, 5); const example = source.pipe( tap(val ...
確定! 回上一頁