Rocky_Mountain_Vending/.pnpm-store/v10/files/75/c733225df0cf0e9ec9f8ade99caf69d6304a2219e249bb02a61abada4cb4406965e692efe76b05cce4803f1bcc8d223095562aa28d4f962179061a781b4f1e
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

9 lines
280 B
Text

export const substring = (input, start, stop, reverse) => {
if (start >= stop || input.length < stop) {
return null;
}
if (!reverse) {
return input.substring(start, stop);
}
return input.substring(input.length - stop, input.length - start);
};