8 lines
181 B
JavaScript

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