Linux unitednationsplay.com 3.10.0-1160.45.1.el7.x86_64 #1 SMP Wed Oct 13 17:20:51 UTC 2021 x86_64
nginx/1.20.1
Server IP : 188.130.139.92 & Your IP : 3.137.152.81
Domains :
Cant Read [ /etc/named.conf ]
User : web
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
home /
www /
wb /
node_modules /
panini /
helpers /
Delete
Unzip
Name
Size
Permission
Date
Action
code.js
733
B
-rw-rw-r--
2022-08-30 11:49
ifEqual.js
451
B
-rw-rw-r--
2022-08-30 11:49
ifPage.js
1.07
KB
-rw-rw-r--
2022-08-30 11:49
markdown.js
921
B
-rw-rw-r--
2022-08-30 11:49
repeat.js
655
B
-rw-rw-r--
2022-08-30 11:49
unlessPage.js
1.1
KB
-rw-rw-r--
2022-08-30 11:49
Save
Rename
var Handlebars = require('handlebars'); /** * Handlebars block helper that repeats the content inside of it n number of times. * @param {integer} count - Number of times to repeat. * @param {object} options - Handlebars object. * @example * {{#repeat 5}}<li>List item!</li>{{/repeat}} * @returns The content inside of the helper, repeated n times. */ module.exports = function(count, options) { var str = ''; var data; if (options.data) { data = Handlebars.createFrame(options.data); } for (var i = 0; i < count; i++) { if (data) { data.index = i; } str += options.fn(this, { data: data }); } return str; }