blob: 99b50e393a6df1ef47818f2b1e2b34252bc5608d [file] [log] [blame]
var Q = require("q");
Q.when(1)
.wait(3, 4, 5)
.join(2, 3, function (one, two, three) {
console.log(one, two, three);
})
.end()