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

25 lines
579 B
Text

import { EventEmitter } from "node:events";
import { Readable } from "node:stream";
export class Worker extends EventEmitter {
stdin = null;
stdout = new Readable();
stderr = new Readable();
threadId = 0;
performance = { eventLoopUtilization: () => ({
idle: 0,
active: 0,
utilization: 0
}) };
postMessage(_value, _transferList) {}
postMessageToThread(_threadId, _value, _transferList, _timeout) {
return Promise.resolve();
}
ref() {}
unref() {}
terminate() {
return Promise.resolve(0);
}
getHeapSnapshot() {
return Promise.resolve(new Readable());
}
}