File size: 222 Bytes
1e92f2d
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
/**
 * Return the URL of the user profile page for a given username.
 *
 * Example: `/reader/users/user_login`
 */
export function getUserProfileUrl( userLogin: string ): string {
	return `/reader/users/${ userLogin }`;
}