Spaces:
Running
Running
File size: 776 Bytes
f7cecf3 | 1 2 3 4 5 6 7 8 9 10 11 12 | export const TEAM_SHORTS = {
"Arsenal": "ARS", "Aston Villa": "AVL", "Burnley": "BUR", "AFC Bournemouth": "BOU",
"Brentford": "BRE", "Brighton and Hove Albion": "BHA", "Chelsea": "CHE",
"Crystal Palace": "CRY", "Everton": "EVE", "Fulham": "FUL", "Leeds United": "LEE",
"Liverpool": "LIV", "Manchester City": "MCI", "Manchester United": "MUN",
"Newcastle United": "NEW", "Nottingham Forest": "NFO", "Sunderland": "SUN",
"Tottenham Hotspur": "TOT", "West Ham United": "WHU", "Wolverhampton Wanderers": "WOL",
"Bournemouth": "BOU", "Brighton": "BHA", "Man City": "MCI", "Man Utd": "MUN",
"Newcastle": "NEW", "Nott'm Forest": "NFO", "Spurs": "TOT", "West Ham": "WHU", "Wolves": "WOL"
};
export const getShortName = (fullName) => TEAM_SHORTS[fullName] || fullName; |