m-waiter
v1.0.5
Published
lets you wait for things. if you just want your code to relax for a bit and wait for the next line to run, this is the package for you.
Downloads
27
Maintainers
Readme
A package that lets you wait for things.
usage:
const wait = require('m-waiter');
const someAsyncFunction = async () => {
doSomething();
await wait(2000);
doSomethingAfter2Seconds();
};