File size: 365 Bytes
1e92f2d
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
/**
 * Remove the starting https, www. and trailing slash from a URL string
 * @param {string} url URL to format
 * @returns {string|undefined} Formatted URL e.g. "https://www.wordpress.com/" --> "wordpress.com"
 */
export function formatUrlForDisplay( url ) {
	if ( ! url ) {
		return;
	}

	return url.replace( /^https?:\/\/(www\.)?/, '' ).replace( /\/$/, '' );
}