Rocky_Mountain_Vending/.pnpm-store/v10/files/18/c2a2f39419a6da65470274c936d012ea175912499e3b77f787ace7bcbd742fbbf354df39422ecf326dba587c939a7117a8dd9663afaa07d82bb892ff09cf0d
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

6 lines
189 B
Text

import exponent from "./exponent.js";
export default function(step, max) {
step = Math.abs(step), max = Math.abs(max) - step;
return Math.max(0, exponent(max) - exponent(step)) + 1;
}