2016-12-13 11:57:50 -08:00

12 lines
324 B
JavaScript

var marko_template = module.exports = require("marko/html").t(__filename),
marko_helpers = require("marko/runtime/html/helpers"),
marko_forEachProp = marko_helpers.fp;
function render(data, out) {
marko_forEachProp(myObject, function(k, v) {
console.log("k:", k, "v:", v);
});
}
marko_template._ = render;