mirror of
https://github.com/logos-messaging/js-waku.git
synced 2026-01-12 18:53:13 +00:00
6 lines
145 B
TypeScript
6 lines
145 B
TypeScript
export function delay(ms: number): Promise<void> {
|
|
return new Promise((resolve) => setTimeout(resolve, ms));
|
|
}
|
|
|
|
export * from "./async_fs.js";
|