Rocky_Mountain_Vending/.pnpm-store/v10/files/45/edd0ffdac11b94cfe5076984ef293ca325749191ae72a8378972416a5952de4474b0aa77b5d9d2dffede70f25fdad92eb4b3f54fdde852bdccad3d173a0822
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

11 lines
437 B
Text

/**
* @internal
*
* Given an input string, splits based on the delimiter after a given
* number of delimiters has been encountered.
*
* @param value - The input string to split.
* @param delimiter - The delimiter to split on.
* @param numDelimiters - The number of delimiters to have encountered to split.
*/
export declare function splitEvery(value: string, delimiter: string, numDelimiters: number): Array<string>;