2016-12-02 11:53:03 -07:00

7 lines
178 B
JavaScript

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