1.0.0 • Published 9 years ago

at-least v1.0.0

Weekly downloads
2
License
ISC
Repository
github
Last release
9 years ago

at-least

Some function just run too fast

Usage

var least = require('at-least');

least(function(cb) {
  $.get('/data.json', function() {
    cb();
  });
}, 1000, function() { // invoked after at least 1000ms
  console.log('done');
});

License

ISC