Rocky_Mountain_Vending/.pnpm-store/v10/files/e7/bbc43edbf3a872275ea94353a2d4e3a7a7a9be9864cc004d058c3fe9a80c5820433613b4bd619d90ea1912b5feff4fce1b5a4b2ac60c45ed3ef6cfbb85c90d
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

23 lines
No EOL
681 B
Text

"use strict";
module.exports = function(url, options) {
if (!options) {
options = {};
}
url = url && url.__esModule ? url.default : url;
if (typeof url !== 'string') {
return url;
} // If url is already wrapped in quotes, remove them
if (/^['"].*['"]$/.test(url)) {
url = url.slice(1, -1);
}
if (options.hash) {
url += options.hash;
} // Should url be wrapped?
// See https://drafts.csswg.org/css-values-3/#urls
if (/["'() \t\n]/.test(url) || options.needQuotes) {
return '"'.concat(url.replace(/"/g, '\\"').replace(/\n/g, '\\n'), '"');
}
return url;
};
//# sourceMappingURL=getUrl.js.map