···11export * as check from "./check.ts";
22+export * as util from "./util.ts";
2334export * from "./env.ts";
45export * from "./fs.ts";
···1314export * from "./logger.ts";
1415export * from "./dates.ts";
1516export * from "./util.ts";
1717+export * from "./retry.ts";
···22import { Buffer } from "jsr:@std/io";
3344export const forwardStreamErrors = (..._streams: ReadableStream[]) => {
55- // Web Streams don't have the same error forwarding mechanism as Node streams
55+ // Web Streams don't have the same error forwarding mechanism as streams
66 // This is a no-op in the Web Streams world since error handling is done differently
77};
88···6060};
61616262// streamToBuffer identifier name already taken by @atproto/common-web
6363-export const streamToNodeBuffer = async (
6363+export const streamToBuffer = async (
6464 stream:
6565 | Iterable<Uint8Array>
6666 | AsyncIterable<Uint8Array>