mirror of
https://github.com/bitwarden/clients.git
synced 2026-02-05 08:33:49 +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));
|
||
|
|
}
|