mirror of
https://github.com/iptv-org/iptv.git
synced 2025-05-13 02:20:03 -04:00
Create scripts/store/setters
This commit is contained in:
parent
21b8ce8731
commit
42d8a670d2
13 changed files with 156 additions and 0 deletions
9
scripts/store/setters/resolution.js
Normal file
9
scripts/store/setters/resolution.js
Normal file
|
@ -0,0 +1,9 @@
|
|||
module.exports = function ({ title, resolution = {} }) {
|
||||
if (title) {
|
||||
const [_, h] = title.match(/\((\d+)P\)/i) || [null, null]
|
||||
|
||||
return h ? { height: parseInt(h), width: null } : resolution
|
||||
}
|
||||
|
||||
return resolution
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue