b2098731创建于 2023年7月20日历史提交
import { get } from './config.js';

const FAVORITES = get('favorites');

export function teamFavoriteStar(team) {
  if (FAVORITES.includes(team.abbreviation)) {
    return `{${get('color.favorite-star')}-fg}★{/} `;
  }
  return '';
}