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