mirror of
https://github.com/bitwarden/browser
synced 2025-12-16 08:13:42 +00:00
Expands use of SessionSyncer to all Subject types. Correctly handles replay buffer for each type to ignore the flood of data upon subscription to each Subject type.
4 lines
104 B
TypeScript
4 lines
104 B
TypeScript
export async function awaitAsync(ms = 0) {
|
|
await new Promise((resolve) => setTimeout(resolve, ms));
|
|
}
|