mirror of
https://github.com/logos-messaging/waku-tests.git
synced 2026-01-02 06:13:06 +00:00
4 lines
98 B
JavaScript
4 lines
98 B
JavaScript
export default function delay(ms) {
|
|
return new Promise((resolve) => setTimeout(resolve, ms));
|
|
}
|