Update update.js

Should fix the width of the columns
This commit is contained in:
Aleksandr Statciuk 2022-12-30 23:27:23 +03:00
parent d6e3d3c96c
commit e96797663a

View file

@ -52,11 +52,7 @@ async function main() {
})
data = Object.values(_.groupBy(data, item => item[0]))
const output = table.create(data, [
'Country                         ',
'Channels',
'EPG'
])
const output = table.create(data, ['Country', 'Channels', 'EPG'])
await file.create('./.readme/_countries.md', output)