finish lo-ditching and update deps

This commit is contained in:
theofficialomega
2025-07-19 22:38:50 +02:00
parent 5e953b6955
commit 4acf1a7c67
9 changed files with 2806 additions and 10207 deletions

View File

@@ -1,6 +1,7 @@
const cheerio = require('cheerio')
const axios = require('axios')
const { DateTime } = require('luxon')
const { uniqBy } = require('../../scripts/functions')
module.exports = {
site: 'tvhebdo.com',
@@ -34,7 +35,6 @@ module.exports = {
return programs
},
async channels() {
const _ = require('lodash')
let items = []
const offsets = [
@@ -72,7 +72,7 @@ module.exports = {
})
})
return _.uniqBy(channels, 'site_id')
return uniqBy(channels, x => x.site_id)
}
}