@dkx/wait-promise
v0.0.1
Published
Wait promise
Downloads
1
Readme
DKX/WaitPromise
Wait promise for node.js
Installation
$ npm install --save @dkx/wait-promise
or with yarn
$ yarn add @dkx/wait-promise
Usage
import {waitPromise} from '@dkx/wait-promise';
(async () => {
await waitPromise(100);
console.log('Waited for 100ms');
})();