fuck you linter
This commit is contained in:
parent
cc75a34d56
commit
77b08747ab
1 changed files with 2 additions and 1 deletions
|
@ -142,7 +142,8 @@ export class Collector extends HarmonyEventEmitter<CollectorEvents> {
|
||||||
}
|
}
|
||||||
|
|
||||||
/** Returns a Promise resolved when Collector ends or a timeout occurs */
|
/** Returns a Promise resolved when Collector ends or a timeout occurs */
|
||||||
async wait(timeout: number = this.timeout ?? 0): Promise<Collector> {
|
async wait(timeout?: number): Promise<Collector> {
|
||||||
|
if (timeout === undefined) timeout = this.timeout ?? 0
|
||||||
return await new Promise((resolve, reject) => {
|
return await new Promise((resolve, reject) => {
|
||||||
// eslint-disable-next-line @typescript-eslint/strict-boolean-expressions
|
// eslint-disable-next-line @typescript-eslint/strict-boolean-expressions
|
||||||
if (!timeout)
|
if (!timeout)
|
||||||
|
|
Loading…
Reference in a new issue