4 lines
122 B
TypeScript
Executable File
4 lines
122 B
TypeScript
Executable File
export function isSubdomain(host: string): boolean {
|
|
return (host.replace('www.', '').match(/\./g) || []).length > 1;
|
|
}
|