Rocky_Mountain_Vending/.pnpm-store/v10/files/60/d4553a0d19b2b8398d085e7dd4ff178c679ab43bb6c32c54163da50cc88d80258ca55b8f60ffa2973b6caff53ef84e67856fb38fa86f8ec036b96c6e39bdc1
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

18 lines
No EOL
535 B
Text

let wasm;
/**
* Gets the webassembly module provided in provideWasm.
*/
export const 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.
*/
export const provideWasm = (w) => {
wasm = w;
};
//# sourceMappingURL=wasm.js.map