Du kan inte välja fler än 25 ämnen
			Ämnen måste starta med en bokstav eller siffra, kan innehålla bindestreck ('-') och vara max 35 tecken långa.
		
		
		
		
		
			
	
	
		
			
				
					
						
						
							| 1234567891011 | /**
 * Appends a suffix to the display name.
 *
 * @param {string} displayName - The display name.
 * @param {string} suffix - Suffix that will be appended.
 * @returns {string} The formatted display name.
 */
export function appendSuffix(displayName, suffix) {
    return `${displayName || suffix || ''}${
        displayName && suffix ? ` (${suffix})` : ''}`;
}
 |