File size: 279 Bytes
1e92f2d | 1 2 3 4 5 6 7 8 9 10 | export function getFixedDomainSearch( domainName ) {
const domain = domainName ?? '';
return domain
.trim()
.toLowerCase()
.replace( /^(https?:\/\/)?(www[0-9]?\.)?/, '' )
.replace( /^www[0-9]?\./, '' )
.replace( /[^a-zA-ZÀ-ÖÙ-öù-ÿĀ-žḀ-ỿ0-9-. ]/g, '' );
}
|