UNPKG

@wordpress/url

Version:
28 lines (25 loc) 673 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.getAuthority = getAuthority; /** * Returns the authority part of the URL. * * @param {string} url The full URL. * * @example * ```js * const authority1 = getAuthority( 'https://wordpress.org/help/' ); // 'wordpress.org' * const authority2 = getAuthority( 'https://localhost:8080/test/' ); // 'localhost:8080' * ``` * * @return {string|void} The authority part of the URL. */ function getAuthority(url) { var matches = /^[^\/\s:]+:(?:\/\/)?\/?([^\/\s#?]+)[\/#?]{0,1}\S*$/.exec(url); if (matches) { return matches[1]; } } //# sourceMappingURL=get-authority.js.map