Update index.js
This commit is contained in:
parent
185512e2c5
commit
769717c030
|
@ -27,6 +27,10 @@ class EPGGrabber {
|
||||||
}
|
}
|
||||||
|
|
||||||
async grab(channel, date, cb = () => {}) {
|
async grab(channel, date, cb = () => {}) {
|
||||||
|
if (!(channel instanceof Channel)) {
|
||||||
|
throw new Error('The first argument must be the "Channel" class')
|
||||||
|
}
|
||||||
|
|
||||||
await sleep(this.config.delay)
|
await sleep(this.config.delay)
|
||||||
|
|
||||||
date = typeof date === 'string' ? getUTCDate(date) : date
|
date = typeof date === 'string' ? getUTCDate(date) : date
|
||||||
|
|
Loading…
Reference in New Issue