Rocky_Mountain_Vending/.pnpm-store/v10/files/37/b6db322772dc4663165236c79b9aa8af9801011525a51b72b6197e5d126c0ec6a58282792ad9bd82641b144591524403782b613e32a9448d74ed30496568bb
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

8 lines
209 B
Text

import { Writable } from "stream";
export class Collector extends Writable {
bufferedBytes = [];
_write(chunk, encoding, callback) {
this.bufferedBytes.push(chunk);
callback();
}
}