mirror of
https://github.com/iptv-org/iptv.git
synced 2025-05-13 10:30:03 -04:00
Moved filterPlaylist() back to helper.js
Need for test.js
This commit is contained in:
parent
7ff1d5ab0b
commit
bc570de9ce
2 changed files with 17 additions and 17 deletions
|
@ -188,6 +188,22 @@ helper.parseMessage = function (err, u) {
|
|||
return line.replace(`${u}: `, '')
|
||||
}
|
||||
|
||||
helper.filterPlaylists = function (arr, include = '', exclude = '') {
|
||||
if (include) {
|
||||
const included = include.split(',').map((filename) => `channels/${filename}.m3u`)
|
||||
|
||||
return arr.filter((i) => included.indexOf(i.url) > -1)
|
||||
}
|
||||
|
||||
if (exclude) {
|
||||
const excluded = exclude.split(',').map((filename) => `channels/${filename}.m3u`)
|
||||
|
||||
return arr.filter((i) => excluded.indexOf(i.url) === -1)
|
||||
}
|
||||
|
||||
return arr
|
||||
}
|
||||
|
||||
class Playlist {
|
||||
constructor(data) {
|
||||
this.header = data.header
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue