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>
17 lines
No EOL
393 B
Text
17 lines
No EOL
393 B
Text
"use strict";
|
|
|
|
exports.__esModule = true;
|
|
exports.default = qsa;
|
|
var toArray = Function.prototype.bind.call(Function.prototype.call, [].slice);
|
|
/**
|
|
* Runs `querySelectorAll` on a given element.
|
|
*
|
|
* @param element the element
|
|
* @param selector the selector
|
|
*/
|
|
|
|
function qsa(element, selector) {
|
|
return toArray(element.querySelectorAll(selector));
|
|
}
|
|
|
|
module.exports = exports["default"]; |