Rocky_Mountain_Vending/.pnpm-store/v10/files/a3/04a2ba384992a26456331d1f1fb15786a0f898b4a3d5339a563b095cf60ad44f8c5ee28710d22e29f55ab7b20392f7201d4b4ddf9401b2893e59958a7b5863
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
426 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>;