import { forEach } from "https://deno.land/x/stream_observables@v1.3/mod.ts";
Calls a function for each item emitted by an observable without waiting for the function to return to forward the item. Exceptions thrown by the function will be caught and ignored.
Parameters
f: (x: T) => Promise<unknown> | unknown
Function called with each emitted value.