Rocky_Mountain_Vending/.pnpm-store/v10/files/ab/ff5994c609328726c8d1921cc1afdcdccee0ef8f0c5a207ea5385d80b1f6b1d71fccabe02478a546c9b8bd0280328430cb4d0da553ea79d7f9b70353628c24
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

5 lines
160 B
Text

import count from "../count.js";
export default function thresholdSturges(values) {
return Math.max(1, Math.ceil(Math.log(count(values)) / Math.LN2) + 1);
}