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>
15 lines
573 B
Text
15 lines
573 B
Text
/**
|
|
* Implements fast shallow verification of hostnames. This does not perform a
|
|
* struct check on the content of labels (classes of Unicode characters, etc.)
|
|
* but instead check that the structure is valid (number of labels, length of
|
|
* labels, etc.).
|
|
*
|
|
* If you need stricter validation, consider using an external library.
|
|
*/
|
|
/**
|
|
* Check if a hostname string is valid. It's usually a preliminary check before
|
|
* trying to use getDomain or anything else.
|
|
*
|
|
* Beware: it does not check if the TLD exists.
|
|
*/
|
|
export default function (hostname: string): boolean;
|