mirror of
https://github.com/sudoxnym/habitica-self-host.git
synced 2026-05-21 21:28:42 +00:00
6 lines
105 B
JavaScript
6 lines
105 B
JavaScript
|
|
export function sleepAsync (ms) {
|
||
|
|
return new Promise(resolve => {
|
||
|
|
setTimeout(resolve, ms);
|
||
|
|
});
|
||
|
|
}
|