Kirian CAUMES

Results 6 comments of Kirian CAUMES

As far I can tell, "meta" is always an object, but most of the time empty. I've only seen it with data when an error is thrown. I think, somehting...

Same problem here, any updates? :/ My code: ```js import ytdl from 'ytdl-core' ytdl('https://www.youtube.com/watch?v=j_BUALoIw4I', { quality: 'highestvideo' }) .on('end', () => { console.log('end') }) .on('error', err => { console.log(err) })...

I'm not sure what you mean @rameshvoodi, I already have a try/catch in my example: ```js try { ... console.log('ok') } catch (error) { console.log('ko') } ```

Hey, I use this for the moment: ```ts // nest-like-console-format.function.ts // eslint-disable-next-line import/no-extraneous-dependencies import clc from 'chalk' import { format } from 'winston' // eslint-disable-next-line import/no-extraneous-dependencies import { Format as...

Another solution I have found is to handle (remove) the unclosing tags before opening it with `exceljs`. A .xlsx file is just a zip containing some .xml files. So if...