Rocky_Mountain_Vending/.pnpm-store/v10/files/de/97775e9eeb7112a0742463615b67ca92440872864f229d5b4dccd1d999f4e073408f393222e4b1bb8460939111740893b164a2e0900f62506335b0a6fb1560
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

20 lines
No EOL
602 B
Text

"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
let wasm;
/**
* Gets the webassembly module provided in provideWasm.
*/
exports.getWasm = () => {
if (!wasm) {
throw new Error('BLAKE3 webassembly not loaded. Please import the module via `blake3/browser` or `blake3/browser-async`');
}
return wasm;
};
/**
* Sets the webassembly module used for the browser build. This indirection is
* needed to provide compatibility between the "browser" and "browser-async" modes.
*/
exports.provideWasm = (w) => {
wasm = w;
};
//# sourceMappingURL=wasm.js.map