Rocky_Mountain_Vending/.pnpm-store/v10/files/27/8b23543046dc3252d15eb32ade6d12a77c860acd922ee9f4bfad174ff97bde7eb1c391d63bedb52f54a9af3dbccfa7a7b839db54f5fe5ba516ce836a0b1510
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

3 lines
207 B
Text

import { Readable } from "stream";
export const isStreamingPayload = (request) => request?.body instanceof Readable ||
(typeof ReadableStream !== "undefined" && request?.body instanceof ReadableStream);