@imgnx/sleep
v1.1.5
Published
Shared `sleep` module: Pause the event loop in a JavaScript process — similar to `timeout`.
Downloads
2
Maintainers
Readme
sleep
Usage:
import sleep from "@imgnx/sleep";
(async () => {
// TODO: You need to pause the thread.
await sleep(3000);
// Three seconds later...
})();