mirror of
https://github.com/iptv-org/iptv.git
synced 2025-05-12 18:10:04 -04:00
12 lines
221 B
JavaScript
12 lines
221 B
JavaScript
module.exports = function () {
|
|
if (this.group_title) return this.group_title
|
|
|
|
if (Array.isArray(this.categories)) {
|
|
return this.categories
|
|
.map(i => i.name)
|
|
.sort()
|
|
.join(';')
|
|
}
|
|
|
|
return ''
|
|
}
|