Rocky_Mountain_Vending/.pnpm-store/v10/files/4d/27fe0755c7aad99ea0e26b0f5bc95447953577624cadd4f8f95226e83c238ed3298249b67e8e5522672abba88557b1df78316c494a3c35eef89e81b3dd9a17
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

13 lines
No EOL
382 B
Text

/**
* Returns an array of calendar weeks from an array of calendar months.
*
* @param months The array of calendar months.
* @returns An array of calendar weeks.
*/
export function getWeeks(months) {
const initialWeeks = [];
return months.reduce((weeks, month) => {
return [...weeks, ...month.weeks];
}, initialWeeks);
}
//# sourceMappingURL=getWeeks.js.map