2017-11-22 16:46:18 -08:00

7 lines
194 B
JavaScript

module.exports = function (input, out) {
var asyncOut = out.beginAsync();
setTimeout(function () {
asyncOut.write('[async] ' + input.name);
asyncOut.end();
}, 10);
};