mirror of
https://github.com/DarthKilroy/Spot.git
synced 2026-02-04 10:36:48 +00:00
10 lines
192 B
JavaScript
10 lines
192 B
JavaScript
|
|
/**
|
||
|
|
* @param {int} milliseconds
|
||
|
|
* @returns {Promise}
|
||
|
|
*/
|
||
|
|
global.sleep = async (milliseconds) => {
|
||
|
|
return new Promise((resolve) => {
|
||
|
|
setTimeout(resolve, milliseconds);
|
||
|
|
});
|
||
|
|
};
|