PHP WebShell

Текущая директория: /opt/BitGoJS/node_modules/tldts-core/src

Просмотр файла: subdomain.ts

/**
 * Returns the subdomain of a hostname string
 */
export default function getSubdomain(hostname: string, domain: string): string {
  // If `hostname` and `domain` are the same, then there is no sub-domain
  if (domain.length === hostname.length) {
    return '';
  }

  return hostname.slice(0, -domain.length - 1);
}

Выполнить команду


Для локальной разработки. Не используйте в интернете!