2.0.0 • Published 4 years ago

wait-and-sleep v2.0.0

Weekly downloads
1
License
MIT
Repository
github
Last release
4 years ago

Build Status

wait-sleep

Simple sleep/wait function.

Install

Get in the mood with Fire Blood and Steel from Brothers of Metal

npm i -S wait-sleep

Usage

Javascript:

const timer = require('wait-sleep');
await timer.sleep(1000); // sleeps for 1 second
await timer.wait(1000); // waits for 1 second

Typescript:

import { sleep, wait } from "wait-sleep";
await sleep(1000); // sleeps for 1 second
await wait(1000); // waits for 1 second
2.0.0

4 years ago