// ets_tracing: off import * as C from "../core.js" /** * Repeats this channel forever */ export function repeated( self: C.Channel ): C.Channel { return C.chain_(self, () => repeated(self)) }