Server IP : 185.86.78.101 / Your IP : 216.73.216.124 Web Server : Apache System : Linux 675867-vds-valikoshka1996.gmhost.pp.ua 5.4.0-150-generic #167-Ubuntu SMP Mon May 15 17:35:05 UTC 2023 x86_64 User : www ( 1000) PHP Version : 7.4.33 Disable Function : passthru,exec,system,putenv,chroot,chgrp,chown,shell_exec,popen,proc_open,pcntl_exec,ini_alter,ini_restore,dl,openlog,syslog,readlink,symlink,popepassthru,pcntl_alarm,pcntl_fork,pcntl_waitpid,pcntl_wait,pcntl_wifexited,pcntl_wifstopped,pcntl_wifsignaled,pcntl_wifcontinued,pcntl_wexitstatus,pcntl_wtermsig,pcntl_wstopsig,pcntl_signal,pcntl_signal_dispatch,pcntl_get_last_error,pcntl_strerror,pcntl_sigprocmask,pcntl_sigwaitinfo,pcntl_sigtimedwait,pcntl_exec,pcntl_getpriority,pcntl_setpriority,imap_open,apache_setenv MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : OFF | Sudo : ON | Pkexec : OFF Directory : /www/wwwroot/mifepriston.org/node_modules/webpack/lib/logging/ |
Upload File : |
/* MIT License http://www.opensource.org/licenses/mit-license.php Author Tobias Koppers @sokra */ "use strict"; /** * @param {any[]} args items to be truncated * @param {number} maxLength maximum length of args including spaces between * @returns {string[]} truncated args */ const truncateArgs = (args, maxLength) => { const lengths = args.map(a => `${a}`.length); const availableLength = maxLength - lengths.length + 1; if (availableLength > 0 && args.length === 1) { if (availableLength >= args[0].length) { return args; } else if (availableLength > 3) { return ["..." + args[0].slice(-availableLength + 3)]; } else { return [args[0].slice(-availableLength)]; } } // Check if there is space for at least 4 chars per arg if (availableLength < lengths.reduce((s, i) => s + Math.min(i, 6), 0)) { // remove args if (args.length > 1) return truncateArgs(args.slice(0, args.length - 1), maxLength); return []; } let currentLength = lengths.reduce((a, b) => a + b, 0); // Check if all fits into maxLength if (currentLength <= availableLength) return args; // Try to remove chars from the longest items until it fits while (currentLength > availableLength) { const maxLength = Math.max(...lengths); const shorterItems = lengths.filter(l => l !== maxLength); const nextToMaxLength = shorterItems.length > 0 ? Math.max(...shorterItems) : 0; const maxReduce = maxLength - nextToMaxLength; let maxItems = lengths.length - shorterItems.length; let overrun = currentLength - availableLength; for (let i = 0; i < lengths.length; i++) { if (lengths[i] === maxLength) { const reduce = Math.min(Math.floor(overrun / maxItems), maxReduce); lengths[i] -= reduce; currentLength -= reduce; overrun -= reduce; maxItems--; } } } // Return args reduced to length in lengths return args.map((a, i) => { const str = `${a}`; const length = lengths[i]; if (str.length === length) { return str; } else if (length > 5) { return "..." + str.slice(-length + 3); } else if (length > 0) { return str.slice(-length); } else { return ""; } }); }; module.exports = truncateArgs;