Rocky_Mountain_Vending/.pnpm-store/v10/files/8f/231c65650f51824c876c3c2b8bf71c32eb3e8fb9709278e0196fdcf4925b7862c3f13471f0e65747d18bfea32eb8f38984eacda49428b19e186af86054633a
DMleadgen 46d973904b
Initial commit: Rocky Mountain Vending website
Next.js website for Rocky Mountain Vending company featuring:
- Product catalog with Stripe integration
- Service areas and parts pages
- Admin dashboard with Clerk authentication
- SEO optimized pages with JSON-LD structured data

Co-authored-by: Cursor <cursoragent@cursor.com>
2026-02-12 16:22:15 -07:00

7 lines
201 B
Text

export async function splitStream(stream) {
if (typeof stream.stream === "function") {
stream = stream.stream();
}
const readableStream = stream;
return readableStream.tee();
}