不要怂,就是干,撸起袖子干!

helpers.js 199 Bytes
var Helpers = module.exports = {
  async: function(fct) {
    var done = false
    runs(function() {
      fct(function() { return done = true })
    })
    waitsFor(function(){ return done })
  }
}