Rocky_Mountain_Vending/.pnpm-store/v10/files/3e/f59008f2aaaa5c81d6d2305836179576dd02fe61d3f717947b8e826490abbf7eb436b6a4b215a0de211671a67ded5226a597ac55ec5d9e7e594a742a825dff
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

7 lines
No EOL
184 B
Text

export function arrRemove(arr, item) {
if (arr) {
const index = arr.indexOf(item);
0 <= index && arr.splice(index, 1);
}
}
//# sourceMappingURL=arrRemove.js.map