Linux srv25.usacloudserver.us 5.14.0-570.39.1.el9_6.x86_64 #1 SMP PREEMPT_DYNAMIC Thu Sep 4 05:08:52 EDT 2025 x86_64
LiteSpeed
Server IP : 23.137.84.82 & Your IP : 216.73.216.127
Domains :
Cant Read [ /etc/named.conf ]
User : epicgamerzoneco
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
lib /
node_modules /
npm /
node_modules /
gauge /
lib /
Delete
Unzip
Name
Size
Permission
Date
Action
base-theme.js
424
B
-rw-r--r--
2023-08-08 22:32
error.js
616
B
-rw-r--r--
2023-08-08 22:32
has-color.js
99
B
-rw-r--r--
2023-08-08 22:32
index.js
7.12
KB
-rw-r--r--
2023-08-08 22:32
plumbing.js
1.25
KB
-rw-r--r--
2023-08-08 22:32
process.js
89
B
-rw-r--r--
2023-08-08 22:32
progress-bar.js
1.01
KB
-rw-r--r--
2023-08-08 22:32
render-template.js
5.81
KB
-rw-r--r--
2023-08-08 22:32
set-immediate.js
139
B
-rw-r--r--
2023-08-08 22:32
set-interval.js
93
B
-rw-r--r--
2023-08-08 22:32
spin.js
105
B
-rw-r--r--
2023-08-08 22:32
template-item.js
1.93
KB
-rw-r--r--
2023-08-08 22:32
theme-set.js
3.63
KB
-rw-r--r--
2023-08-08 22:32
themes.js
1.63
KB
-rw-r--r--
2023-08-08 22:32
wide-truncate.js
858
B
-rw-r--r--
2023-08-08 22:32
Save
Rename
'use strict' var stringWidth = require('string-width') var stripAnsi = require('strip-ansi') module.exports = wideTruncate function wideTruncate (str, target) { if (stringWidth(str) === 0) { return str } if (target <= 0) { return '' } if (stringWidth(str) <= target) { return str } // We compute the number of bytes of ansi sequences here and add // that to our initial truncation to ensure that we don't slice one // that we want to keep in half. var noAnsi = stripAnsi(str) var ansiSize = str.length + noAnsi.length var truncated = str.slice(0, target + ansiSize) // we have to shrink the result to account for our ansi sequence buffer // (if an ansi sequence was truncated) and double width characters. while (stringWidth(truncated) > target) { truncated = truncated.slice(0, -1) } return truncated }