initial
This commit is contained in:
43
node_modules/pug/test/output/while.js
generated
vendored
Normal file
43
node_modules/pug/test/output/while.js
generated
vendored
Normal file
@@ -0,0 +1,43 @@
|
||||
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 x = 1;
|
||||
pug_html = pug_html + "<ul>";
|
||||
while (x < 10) {
|
||||
x++;
|
||||
pug_html = pug_html + "<li>" + pug_escape(null == (pug_interp = x) ? "" : pug_interp) + "</li>";
|
||||
}
|
||||
pug_html = pug_html + "</ul>";
|
||||
return pug_html;
|
||||
}
|
||||
Reference in New Issue
Block a user