// ets_tracing: off import * as CK from "../../../../Collections/Immutable/Chunk/index.js" import type * as Ref from "../../../../Ref/index.js" import type * as C from "../core.js" import * as Buffer from "./buffer.js" export function bufferChunk( ref: Ref.Ref> ): C.Channel< unknown, InErr, CK.Chunk, InDone, InErr, CK.Chunk, InDone > { return Buffer.buffer, InErr, InDone>( CK.empty(), (_) => CK.isEmpty(_), ref ) }