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>
14 lines
223 B
Text
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;
|
|
}
|