1.0.0 • Published 8 years ago

await-delay v1.0.0

Weekly downloads
3,446
License
GPL-3.0
Repository
github
Last release
8 years ago

await-delay

use delay/sleep to async/await ES7

Installation

npm i --save await-delay

Usage

import delay from 'await-delay'

async () => {
  // Do something
  
  // Wait for 2 seconds 
  await delay(2000)

  // Do things after the delay
}