mirror of
https://github.com/marko-js/marko.git
synced 2025-12-08 19:26:05 +00:00
16 lines
239 B
JavaScript
16 lines
239 B
JavaScript
function create(__markoHelpers) {
|
|
return function render(data, out) {
|
|
if (true) {
|
|
out.w("A");
|
|
}
|
|
|
|
out.w("B");
|
|
|
|
if (true) {
|
|
out.w("C");
|
|
}
|
|
};
|
|
}
|
|
|
|
(module.exports = require("marko").c(__filename)).c(create);
|