Rocky_Mountain_Vending/.pnpm-store/v10/files/99/f5a7612a68f5e207f3a4a48443cff36932b7aee619e1233a83f3df6a6ded08937cb7895b2147d99be99d2794cdc9a4d1fd144d7cc94b4052cb3b1134688c8f
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
240 B
Text

import { fromString } from "@smithy/util-buffer-from";
export const fromUtf8 = (input) => {
const buf = fromString(input, "utf8");
return new Uint8Array(buf.buffer, buf.byteOffset, buf.byteLength / Uint8Array.BYTES_PER_ELEMENT);
};