// ets_tracing: off import * as CK from "../../../../Collections/Immutable/Chunk/index.js" import type * as C from "../core.js" import * as MapChunks from "./mapChunks.js" /** * Exposes the underlying chunks of the stream as a stream of chunks of elements */ export function chunks(self: C.Stream): C.Stream> { return MapChunks.mapChunks_(self, CK.single) }