Rocky_Mountain_Vending/.pnpm-store/v10/files/05/8a09f8f98fc276f896a0661e22b2392d42023a0bd419c398c95b8d932e57e022204d140939da54409d4df111d70f84557a4b92c785f42d346fc38986f8d397
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

4 lines
129 B
Text

export function spliceOne(list, index) {
for (; index + 1 < list.length; index++) list[index] = list[index + 1];
list.pop();
}