Rocky_Mountain_Vending/.pnpm-store/v10/files/91/f22a1cf8dafe553a534989d242cf1608aaeb1930ce2704eee436ce46350f7e1f7b6bb5d3e9f4e9f81117418aed157c4a2a37af603f9455e3c00ec9fe1af5ae
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

17 lines
379 B
Text

import { EventEmitter } from "node:events";
export class MessagePort extends EventEmitter {
close() {}
postMessage(value, transferList) {}
ref() {}
unref() {}
start() {}
addEventListener(type, listener) {
this.on(type, listener);
}
removeEventListener(type, listener) {
this.off(type, listener);
}
dispatchEvent(event) {
return this.emit(event.type, event);
}
}