6 lines
126 B
JavaScript

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