Rocky_Mountain_Vending/.pnpm-store/v10/files/f7/b7fc21124c56e622d6bbb7c959bc73b146ad986d91682fdfab780afe50cd6f0cd336844d7d33bfac9f1e20d06098a92169858d232e1728f9c5e96e3222fede
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

50 lines
1.9 KiB
Text

import { BroadcastChannel } from "./internal/worker_threads/broadcast-channel.mjs";
import { MessageChannel } from "./internal/worker_threads/message-channel.mjs";
import { MessagePort } from "./internal/worker_threads/message-port.mjs";
import { Worker } from "./internal/worker_threads/worker.mjs";
import { notImplemented } from "../_internal/utils.mjs";
export { BroadcastChannel } from "./internal/worker_threads/broadcast-channel.mjs";
export { MessageChannel } from "./internal/worker_threads/message-channel.mjs";
export { MessagePort } from "./internal/worker_threads/message-port.mjs";
export { Worker } from "./internal/worker_threads/worker.mjs";
const _environmentData = new Map();
export const getEnvironmentData = function getEnvironmentData(key) {
return _environmentData.get(key);
};
export const setEnvironmentData = function setEnvironmentData(key, value) {
_environmentData.set(key, value);
};
export const isMainThread = true;
export const isMarkedAsUntransferable = () => false;
export const markAsUntransferable = function markAsUntransferable(value) {};
export const markAsUncloneable = () => {};
export const moveMessagePortToContext = () => new MessagePort();
export const parentPort = null;
export const receiveMessageOnPort = () => undefined;
export const SHARE_ENV = /*@__PURE__*/ Symbol.for("nodejs.worker_threads.SHARE_ENV");
export const resourceLimits = {};
export const threadId = 0;
export const workerData = null;
export const postMessageToThread = /*@__PURE__*/ notImplemented("worker_threads.postMessageToThread");
export const isInternalThread = false;
export default {
BroadcastChannel,
MessageChannel,
MessagePort,
Worker,
SHARE_ENV,
getEnvironmentData,
isMainThread,
isMarkedAsUntransferable,
markAsUntransferable,
markAsUncloneable,
moveMessagePortToContext,
parentPort,
receiveMessageOnPort,
resourceLimits,
setEnvironmentData,
postMessageToThread,
threadId,
workerData,
isInternalThread
};