Rocky_Mountain_Vending/.pnpm-store/v10/files/de/8c1fd742d67d0ec8f2941e841c8344900672639b84120a56f877632801c34589fb252ecefed3d6c31b09c13cc3d17de1ace30c7eb9c85d923030a9197ea53e
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
178 B
Text

import {hue} from "./color.js";
export default function(a, b) {
var i = hue(+a, +b);
return function(t) {
var x = i(t);
return x - 360 * Math.floor(x / 360);
};
}