Rocky_Mountain_Vending/.pnpm-store/v10/files/f0/c24fcb0863862f8444741a824f986d4f267459e9030460d8058c2a84b2939acde8ba562e3b7355b952f9e4d880156a11a09a9b055476b28c468f54da2a3d25
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

22 lines
No EOL
667 B
Text

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