mirror of
https://github.com/danbulant/discord.js
synced 2026-07-08 12:40:50 +00:00
Webpack build for branch 11.3-dev: 488b1eb4ee
This commit is contained in:
parent
edb3d00d37
commit
7b510e579b
2 changed files with 13 additions and 1 deletions
|
|
@ -1691,6 +1691,18 @@ class Util {
|
||||||
}
|
}
|
||||||
return array.indexOf(element);
|
return array.indexOf(element);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Creates a Promise that resolves after a specified duration.
|
||||||
|
* @param {number} ms How long to wait before resolving (in milliseconds)
|
||||||
|
* @returns {Promise<void>}
|
||||||
|
* @private
|
||||||
|
*/
|
||||||
|
static delayFor(ms) {
|
||||||
|
return new Promise(resolve => {
|
||||||
|
setTimeout(resolve, ms);
|
||||||
|
});
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
module.exports = Util;
|
module.exports = Util;
|
||||||
|
|
|
||||||
2
discord.11.3-dev.min.js
vendored
2
discord.11.3-dev.min.js
vendored
File diff suppressed because one or more lines are too long
Loading…
Reference in a new issue