Rocky_Mountain_Vending/.pnpm-store/v10/files/0e/baf16182a27ccf0de60b0b38ab153e1895c3c97c418ee161d2a55cc97f69a6b632ee3c170205af7252566e5fa5f4cfeb782a90ec4f707fd0cccc1c22b1a5f1
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

12 lines
No EOL
323 B
Text

let w;
/**
* Lazyily get the WebAssembly module. Used to avoid unnecessarily importing
* the wasm when extending the WebAssembly node code for native bindings.
*/
export const getWasm = () => {
if (!w) {
w = require('../../dist/wasm/nodejs/blake3_js');
}
return w;
};
//# sourceMappingURL=wasm.js.map