Linux SRV-16 6.18.44-paas #1 SMP PREEMPT_DYNAMIC Thu Aug 13 10:08:12 UTC 2026 x86_64
/
srv
/
data
/
web
/
vhosts
/
716cf56cb2.url-de-test.ws
/
htdocs
/
node_modules
/
hpack.js
/
tools
/
/srv/data/web/vhosts/716cf56cb2.url-de-test.ws/htdocs/node_modules/hpack.js/tools/utils.js
// Wrap lines after 79 chars exports.wrap = function wrap(str) { var out = []; var pad = ' '; var line = pad; var chunks = str.split(/,/g); chunks.forEach(function(chunk, i) { var append = chunk; if (i !== chunks.length - 1) append += ','; if (line.length + append.length > 79) { out.push(line); line = pad; } line += append; }); if (line !== pad) out.push(line); return out.join('\n'); };