mirror of
https://github.com/JonnyBro/JaBa.git
synced 2025-04-03 17:37:38 +05:00
6 lines
131 B
JavaScript
6 lines
131 B
JavaScript
class Utilities {
|
|
wait(time) {
|
|
return new Promise((r) => setTimeout(r, time).unref());
|
|
}
|
|
}
|
|
module.exports = { Utilities };
|