mirror of
https://github.com/bitwarden/browser.git
synced 2024-11-04 09:01:01 +01:00
4 lines
104 B
TypeScript
4 lines
104 B
TypeScript
|
export async function awaitAsync(ms = 0) {
|
||
|
await new Promise((resolve) => setTimeout(resolve, ms));
|
||
|
}
|