Rocky_Mountain_Vending/.pnpm-store/v10/files/bd/e87eb2a8fee1329fb026eb0c4b0ffe85d9173f6c7b3eff80dbffb476e71124003420c87350b6060534a5de3b8da15d8004243c36b2d43e18be26911d346ebf
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

25 lines
517 B
Text

import noop from "../noop.js";
function LinearClosed(context) {
this._context = context;
}
LinearClosed.prototype = {
areaStart: noop,
areaEnd: noop,
lineStart: function() {
this._point = 0;
},
lineEnd: function() {
if (this._point) this._context.closePath();
},
point: function(x, y) {
x = +x, y = +y;
if (this._point) this._context.lineTo(x, y);
else this._point = 1, this._context.moveTo(x, y);
}
};
export default function(context) {
return new LinearClosed(context);
}