Rocky_Mountain_Vending/.pnpm-store/v10/files/84/64ba67ef3d477d73ffe7412600238e7d39e57d9e9f54e3b4b0387bce92c8f71ab26dd06f36bf4cb3aa69f133ca27cf6843ef710ee0d7a5c35b6917cddd8648
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

16 lines
663 B
Text

"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
exports.splitStream = splitStream;
const stream_1 = require("stream");
const splitStream_browser_1 = require("./splitStream.browser");
const stream_type_check_1 = require("./stream-type-check");
async function splitStream(stream) {
if ((0, stream_type_check_1.isReadableStream)(stream) || (0, stream_type_check_1.isBlob)(stream)) {
return (0, splitStream_browser_1.splitStream)(stream);
}
const stream1 = new stream_1.PassThrough();
const stream2 = new stream_1.PassThrough();
stream.pipe(stream1);
stream.pipe(stream2);
return [stream1, stream2];
}