Rocky_Mountain_Vending/.pnpm-store/v10/files/30/9e9aac9202224d92b8ad315c1c7e9af2e7300749d82ec4768d543d334a4fa8c135c139baa42fb2182799a12a2d88c97c927f3c55e67c4a0b6eef528b14c31c
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
229 B
Text

export function getRoundingMethod(method) {
return (number) => {
const round = method ? Math[method] : Math.trunc;
const result = round(number);
// Prevent negative zero
return result === 0 ? 0 : result;
};
}