Rocky_Mountain_Vending/.pnpm-store/v10/files/a5/fee97039e1b704977f1c93abe3c55dec5a99f405db237fa5da9853d0532a5707b3d308997392e3564b43a76e681e39972bcc95b91ed1570b4fb0a4bc588545
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

28 lines
No EOL
1.1 KiB
Text

// Copyright 2021 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
export const EmptyUrlString = '';
/**
* Tagged template helper to construct `UrlString`s in a more readable form,
* without having to sprinkle casts throughout the codebase. Primarily useful
* for writing unit tests.
*
* Usage:
* ```js
* const url1 = urlString`https://www.example.com/404.html`;
* const url2 = urlString`http://${host}/path/to/file.js`;
* ```
*
* This is implemented as a wrapper around `String.raw` for convenience. This
* function doesn't perform any kind of validation that the returned string is
* really a valid `UrlString`.
*
* @param strings the string parts of the template.
* @param values the dynamic values of the template.
* @returns the string constructed from `strings` and `values` casted to an
* `UrlString`.
*/
export const urlString = (strings, ...values) => String.raw({ raw: strings }, ...values);
export const EmptyRawPathString = '';
export const EmptyEncodedPathString = '';
//# sourceMappingURL=DevToolsPath.js.map