pixsy/node_modules/pug/test/output-es2015/attr.js

56 lines
1.7 KiB
JavaScript

function pug_attr(t, e, n, f) {
return !1 !== e && null != e && (e || "class" !== t && "style" !== t) ? !0 === e ? " " + (f ? t : t + '="' + t + '"') : ("function" == typeof e.toJSON && (e = e.toJSON()),
"string" == typeof e || (e = JSON.stringify(e), n || -1 === e.indexOf('"')) ? (n && (e = pug_escape(e)),
" " + t + '="' + e + '"') : " " + t + "='" + e.replace(/'/g, "'") + "'") : "";
}
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 = "&quot;";
break;
case 38:
n = "&amp;";
break;
case 60:
n = "&lt;";
break;
case 62:
n = "&gt;";
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_has_own_property = Object.prototype.hasOwnProperty;
var pug_match_html = /["&<>]/;
function pug_style(r) {
if (!r) return "";
if ("object" == typeof r) {
var t = "";
for (var e in r) pug_has_own_property.call(r, e) && (t = t + e + ":" + r[e] + ";");
return t;
}
return r += "", ";" !== r[r.length - 1] ? r + ";" : r;
}
function template(locals) {
var pug_html = "", pug_mixins = {}, pug_interp;
var avatar = "219b77f9d21de75e81851b6b886057c7";
pug_html = pug_html + "<div" + (' class="avatar-div"' + pug_attr("style", pug_style(`background-image: url(https://www.gravatar.com/avatar/${avatar})`), true, false)) + "></div>";
return pug_html;
}