co-sleep

setTimeout that works with the co generator framework

Downloads in past

Stats

StarsIssuesVersionUpdatedCreatedSize
co-sleep
0.0.110 years ago10 years agoMinified + gzip package size for co-sleep in KB

Readme

co-sleep
setTimeout that works with the co generator framework
build status

Installation

This module is installed via npm:
$ npm install co-sleep

Example Usage

var sleep = require('co-sleep');
var co = require('co');

co(function *() {
  var now = Date.now();
  // wait for 1000 ms
  yield sleep(1000);
  expect(Date.now() - now).to.not.be.below(1000);
})();