0.0.4 • Published 8 years ago

take-a-nap v0.0.4

Weekly downloads
2
License
MIT
Repository
github
Last release
8 years ago

take-a-nap Build Status

Just another javascript implementation of sleep to use with await

Install

npm install --save take-a-nap

Usage

import { nap } from 'take-a-nap'

async function waiting() {
  await nap(3000)
}