Rocky_Mountain_Vending/.pnpm-store/v10/files/1d/9722609f5198e67fee1eac7db4028a4203815158c9e9b2fe893b5dfd25f5eeef43aee15cde397c3e87178de79416773f92cac5e132dc617e8d62dc2da647af
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

15 lines
No EOL
589 B
Text

"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
exports.default = getDomainWithoutSuffix;
/**
* Return the part of domain without suffix.
*
* Example: for domain 'foo.com', the result would be 'foo'.
*/
function getDomainWithoutSuffix(domain, suffix) {
// Note: here `domain` and `suffix` cannot have the same length because in
// this case we set `domain` to `null` instead. It is thus safe to assume
// that `suffix` is shorter than `domain`.
return domain.slice(0, -suffix.length - 1);
}
//# sourceMappingURL=domain-without-suffix.js.map