Delete src_country.js

This commit is contained in:
Aleksandr Statciuk 2022-02-13 01:35:37 +03:00
parent 0c7ff309bc
commit 2dd1c4de8b
1 changed files with 0 additions and 13 deletions

View File

@ -1,13 +0,0 @@
const { file } = require('../../core')
const countries = require('../../data/countries')
module.exports = function ({ filepath }) {
if (filepath) {
const basename = file.basename(filepath)
const [_, code] = basename.match(/([a-z]{2})(|_.*)\.m3u/i) || [null, null]
return code ? countries[code.toUpperCase()] : null
}
return null
}