Rocky_Mountain_Vending/.pnpm-store/v10/files/7b/226a8c1330b3148b48d702e6f6d25de757ccfd3a4719e073488fc62c3b87b22d5110f04169ed278c0a3114cfc3fb79dd1b55cf9e6d30fa82be69e9a1a3d652
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

1 line
148 B
Text

export const getArrayForCommaSeparatedString = (str) => typeof str === "string" && str.length > 0 ? str.split(",").map((item) => item.trim()) : [];