-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathstations.js
More file actions
68 lines (58 loc) · 1.03 KB
/
stations.js
File metadata and controls
68 lines (58 loc) · 1.03 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
const stationList = [
{
name: "MFM",
group: "UA",
station: "mfm"
},
{
name: "ХІТ FM",
group: "TVR",
station: "HitFM"
},
{
name: "Radio ROKS",
group: "TVR",
station: "RadioROKS"
},
{
name: "KISSFM UA",
group: "TVR",
station: "KissFM"
},
{
name: "Мелодія FM",
group: "TVR",
station: "MelodiaFM"
},
{
name: "Радіо Relax",
group: "TVR",
station: "RadioRelax"
},
{
name: "Наше Радіо",
group: "TVR",
station: "NasheRadio"
},
{
name: "Radio Jazz",
group: "TVR",
station: "RadioJazz"
},
{
name: "Classic Radio",
group: "TVR",
station: "ClassicRadio"
},
{
name: "Радіо БАЙРАКТАР",
group: "TVR",
station: "RadioBayraktar"
}
];
// Support both window context (popup/offscreen) and service worker (self)
if (typeof window !== 'undefined') {
window.stationList = stationList;
} else if (typeof self !== 'undefined') {
self.stationList = stationList;
}