Rocky_Mountain_Vending/.pnpm-store/v10/files/eb/eabd475ceb4246068f549a54f4cf48783d9ede0edcc3f631f08b53e289b1eae9dd5a3516bee7b83c86cbc46ed4b1a053190e854eaf20be066c9cb81c3a2ba7
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

8 lines
293 B
Text

/**
* Gets or sets an attribute of a given element.
*
* @param node the element
* @param attr the attribute to get or set
* @param val the attribute value
*/
export default function attribute(node: Element | null, attr: string, val?: string | boolean | null): string | null | undefined;