mirror of
https://github.com/marko-js/marko.git
synced 2025-12-08 19:26:05 +00:00
16 lines
243 B
JavaScript
16 lines
243 B
JavaScript
"use strict";
|
|
|
|
var marko_template = module.exports = require("marko/html").t(__filename);
|
|
|
|
function render(input, out) {
|
|
var data = input;
|
|
|
|
if (true) {
|
|
console.log("hello");
|
|
}
|
|
}
|
|
|
|
marko_template._ = render;
|
|
|
|
marko_template.meta = {};
|