Rocky_Mountain_Vending/.pnpm-store/v10/files/c9/6ebfc9e1eb3355635e7a0e42549273da57ae500a0180d6d5a01baf5279995ae5f41c59a00c7574e5c89e9d8f1f274d8f0de7d6e807238a85561155faafd0e2
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

8 lines
177 B
Text

// packages/core/number/src/number.ts
function clamp(value, [min, max]) {
return Math.min(max, Math.max(min, value));
}
export {
clamp
};
//# sourceMappingURL=index.mjs.map