Rocky_Mountain_Vending/.pnpm-store/v10/files/9f/81567f533a8ab6bf34243623525f30653fe4a4e43367d177c13a93debaa4cb24c7c4f361cfcb8921da3f4da713d295bca28730362a0b2a10aa7e1f824f71e8
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

33 lines
No EOL
760 B
Text

"use strict";
Object.defineProperty(exports, "__esModule", {
value: true
});
exports.default = _default;
var _noop = _interopRequireDefault(require("../noop.js"));
function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }
function LinearClosed(context) {
this._context = context;
}
LinearClosed.prototype = {
areaStart: _noop.default,
areaEnd: _noop.default,
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);
}
};
function _default(context) {
return new LinearClosed(context);
}