|
@@ -27,11 +27,8 @@ export function getOrgCode() {
|
|
|
export function getOrgCodeFromDomain(domain: string) {
|
|
|
let code = '';
|
|
|
if (!domain) return '';
|
|
|
- console.log('domain', domain);
|
|
|
-
|
|
|
const hostname = domain.split('://')[1];
|
|
|
if (!hostname) return '';
|
|
|
-
|
|
|
const ipFormat = new RegExp(/\d{1,3}\.\d{1,3}\.\d{1,3}\.\d{1,3}/);
|
|
|
if (ipFormat.test(hostname) || hostname.includes('localhost')) return '';
|
|
|
code = hostname.split('.')[0];
|