UNPKG
playball
Version:
latest (3.4.0)
3.4.0
3.3.0
3.2.0
3.1.3
3.1.2
3.1.1
3.1.0
3.0.0
2.2.2
2.2.1
2.2.0
2.1.0
2.0.4
2.0.3
2.0.2
2.0.1
2.0.0
1.1.0
1.0.1
1.0.0
0.1.4
0.1.3
0.1.2
0.1.1
0.1.0
Watch MLB games from the comfort of your terminal
github.com/paaatrick/playball
paaatrick/playball
playball
/
dist
/
utils.js
9 lines
•
269 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
import
{ get }
from
"./config.js"
;
const
FAVORITES
=
get
(
'favorites'
);
export
function
teamFavoriteStar
(
team
) {
const
style =
get
(
'color.favorite-star'
) +
'-fg'
;
if
(
FAVORITES
.
includes
(team.
abbreviation
)) {
return
`{
${style}
}★{/
${style}
} `
; }
return
''
; }