@chargedcloud/promise-sleep
v1.2.1
Published
Simple function who returns a promise that resolves after a certain amount of time.
Downloads
441
Maintainers
Readme
@chargedcloud/promise-sleep
The promise-sleep package is a simple function who returns a promise that resolves after a certain amount of time.
Installation
You can install the package using npm:
npm install @chargedcloud/promise-sleep
Usage
First, you need to import the package:
// CommonJS
const sleep = require("@chargedcloud/promise-sleep");
// ES6
import sleep from "@chargedcloud/promise-sleep";
Then, you can use the function passing the amount of time in milliseconds:
// Sleep for 1 second
await sleep(1000);
// Sleep for 1 second and then log "Hello, world!"
await sleep(1000).then(() => console.log("Hello, world!"));