Rocky_Mountain_Vending/.pnpm-store/v10/files/f5/46015c04051eddd851bb9e7805f1fc1a8f1531f65aa9ce2ad7edc1a2e62de363c7995484c596ddefe1f2fb072954924364b4b35bea96a9b5af8a344b085a46
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
No EOL
646 B
Text

"use strict";
exports.__esModule = true;
exports.default = void 0;
/**
* A `removeEventListener` ponyfill
*
* @param node the element
* @param eventName the event name
* @param handle the handler
* @param options event options
*/
function removeEventListener(node, eventName, handler, options) {
var capture = options && typeof options !== 'boolean' ? options.capture : options;
node.removeEventListener(eventName, handler, capture);
if (handler.__once) {
node.removeEventListener(eventName, handler.__once, capture);
}
}
var _default = removeEventListener;
exports.default = _default;
module.exports = exports["default"];