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