mirror of
https://github.com/iptv-org/iptv.git
synced 2025-05-14 11:00:03 -04:00
5 lines
170 B
JavaScript
5 lines
170 B
JavaScript
module.exports = function () {
|
|
if (this.tvg_country) return this.tvg_country
|
|
|
|
return Array.isArray(this.countries) ? this.countries.map(i => i.code).join(';') : ''
|
|
}
|