export function flats() { return new TransformStream({ transform: async (chunk, ctrl) => { chunk.map((e) => ctrl.enqueue(e)); }, }); }