Rocky_Mountain_Vending/.pnpm-store/v10/files/95/bff8ce7cfd3c9ceff6257f0658dafcb84f0a536597d76b02b12a19798672f0d5c6f4667448e081cc32aa493ed361bf12dd8b9fe035a175c1da5a3d8e4638e3
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
No EOL
233 B
Text

export function getOxfordCommaList(items) {
return items.map((v, index, { length })=>(index > 0 ? index === length - 1 ? length > 2 ? ', and ' : ' and ' : ', ' : '') + v).join('');
}
//# sourceMappingURL=oxford-comma-list.js.map