mirror of
https://github.com/marko-js/marko.git
synced 2026-01-25 15:03:04 +00:00
9 lines
217 B
JavaScript
9 lines
217 B
JavaScript
exports.templateData = {
|
|
beginAsync: function (out) {
|
|
var asyncOut = out.beginAsync();
|
|
setTimeout(function () {
|
|
asyncOut.write('B');
|
|
asyncOut.end();
|
|
}, 20);
|
|
}
|
|
}; |