react-code-dataset / wp-calypso /client /lib /domains /get-fixed-domain-search.js
Devendra174's picture
Upload folder using huggingface_hub
1e92f2d verified
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, '' );
}