@trendyminds/delay
v1.1.0
Published
A promise-based setTimeout so you can await for a duration before proceeding
Downloads
4
Readme
⏱ Delay
A promise-based setTimeout so you can await for a duration before proceeding
Install
npm i @trendyminds/delay
Usage
import delay from "@trendyminds/delay";
(async () => {
console.log("Hello");
// wait 2 seconds until the next command
await delay(2000);
console.log("world");
})();