Delay with async/await
Branch: master
Clone or download
Latest commit d442729 Sep 22, 2018
Permalink
Type Name Latest commit message Commit time
Failed to load latest commit information.
index.js Initial commit Aug 17, 2017
package.json Initial commit Aug 17, 2017
readme.MD Update readme.MD Sep 22, 2018

readme.MD

await-sleep

Simple sleep with async/await

Installation

npm install --save await-sleep

Usage

import sleep from 'await-sleep'

async function myAsyncFunction() {
  console.time('Sleeping');

  await sleep(1500);

  console.timeEnd('Sleeping'); // Sleeping: 1507.180ms
}