Sha256: 0d0ab6b2eb24cca656d8314e912637a965b984a73489f08134f5ffb3a72e48c0
Contents?: true
Size: 440 Bytes
Versions: 26
Compression:
Stored size: 440 Bytes
Contents
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.default = getSubdomain; /** * Returns the subdomain of a hostname string */ function getSubdomain(hostname, domain) { // 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); } //# sourceMappingURL=subdomain.js.map
Version data entries
26 entries across 26 versions & 1 rubygems