function pug_escape(e) { var a = "" + e, t = pug_match_html.exec(a); if (!t) return e; var r, c, n, s = ""; for (r = t.index, c = 0; r < a.length; r++) { switch (a.charCodeAt(r)) { case 34: n = """; break; case 38: n = "&"; break; case 60: n = "<"; break; case 62: n = ">"; break; default: continue; } c !== r && (s += a.substring(c, r)), c = r + 1, s += n; } return c !== r ? s + a.substring(c, r) : s; } var pug_match_html = /["&<>]/; function template(locals) { var pug_html = "", pug_mixins = {}, pug_interp; var locals_for_with = locals || {}; (function(Object, val) { var users = []; pug_html = pug_html + ""; var users = [ { name: "tobi", friends: [ "loki" ] }, { name: "loki" } ]; if (users) { pug_html = pug_html + ""; } var user = { name: "tobi", age: 10 }; pug_html = pug_html + ""; var user = {}; pug_html = pug_html + ""; var user = Object.create(null); user.name = "tobi"; pug_html = pug_html + ""; }).call(this, "Object" in locals_for_with ? locals_for_with.Object : typeof Object !== "undefined" ? Object : undefined, "val" in locals_for_with ? locals_for_with.val : typeof val !== "undefined" ? val : undefined); return pug_html; }