mirror of
https://github.com/Pax1601/DCSOlympus.git
synced 2025-10-29 16:56:34 +00:00
10 lines
133 B
JavaScript
10 lines
133 B
JavaScript
|
|
|
|
async function sleep(ms) {
|
|
await new Promise(r => setTimeout(r, ms));
|
|
return true;
|
|
}
|
|
|
|
module.exports = {
|
|
sleep: sleep
|
|
} |