mirror of
https://github.com/bitwarden/clients.git
synced 2026-02-05 16:44:41 +08:00
4 lines
104 B
TypeScript
4 lines
104 B
TypeScript
|
|
export async function awaitAsync(ms = 0) {
|
||
|
|
await new Promise((resolve) => setTimeout(resolve, ms));
|
||
|
|
}
|