Rocky_Mountain_Vending/.pnpm-store/v10/files/22/bb891be5d5e048211938af1f7cb99b8b08730089cb0746a29a9fafa2a6aaa0057e0559986726c8a3e2d3de2a4dd470dffb98081082cc4469d277b42464ff75
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

14 lines
223 B
Text

import { Socket } from "node:net";
export class ReadStream extends Socket {
fd;
constructor(fd) {
super();
this.fd = fd;
}
isRaw = false;
setRawMode(mode) {
this.isRaw = mode;
return this;
}
isTTY = false;
}