Rocky_Mountain_Vending/.pnpm-store/v10/files/4b/052480c97626c50d2c5cf93ab777b448e0eb072e21efb39651ffbd9f43fbdb0afba23edd6477a03af72daa4cfcf4b913a990d7fb692f9b3d49d43f9d7751ab
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

5 lines
309 B
Text

import { createHash } from 'node:crypto';
const e=globalThis.process?.getBuiltinModule?.("crypto")?.hash,r="sha256",s="base64url";function digest(t){if(e)return e(r,t,s);const o=createHash(r).update(t);return globalThis.process?.versions?.webcontainer?o.digest().toString(s):o.digest(s)}
export { digest };