const ASSET_BACKED_PROP_HIGHLIGHT_LEAGUES = new Set([
  'mlb',
  'nba',
  'ncaab',
  'nhl',
  'epl',
  'la_liga',
  'bundesliga',
  'serie_a',
  'ligue_1',
  'champions_league',
]);

export function usesAssetBackedPropHighlights(league: string | null | undefined): boolean {
  return ASSET_BACKED_PROP_HIGHLIGHT_LEAGUES.has(String(league || '').trim().toLowerCase());
}
