export function skips(n = 1) { return new TransformStream({ transform: async (chunk, ctrl) => { if (n <= 0) ctrl.enqueue(chunk); else n--; }, }); }