Moved skipPlaylist() to test/index.js

This commit is contained in:
freearhey 2019-09-08 19:51:59 +03:00
parent c7976d6b8c
commit 8213dcd697
1 changed files with 1 additions and 10 deletions

View File

@ -229,14 +229,6 @@ function validateUrl(channelUrl) {
return blacklist.indexOf(host) === -1
}
function skipPlaylist(filename) {
let test_country = process.env.npm_config_country
if (test_country && filename !== 'channels/' + test_country + '.m3u') {
return true;
}
return false;
}
module.exports = {
parsePlaylist,
sortByTitleAndUrl,
@ -249,6 +241,5 @@ module.exports = {
addToCache,
checkCache,
clearCache,
validateUrl,
skipPlaylist
validateUrl
}