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>
25 lines
No EOL
646 B
Text
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"]; |