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.15.28.86
Domains :
Cant Read [ /etc/named.conf ]
User : web
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
home /
www /
unp-musonza /
node_modules /
wordwrap /
Delete
Unzip
Name
Size
Permission
Date
Action
example
[ DIR ]
drwxr-xr-x
2021-02-04 21:24
test
[ DIR ]
drwxr-xr-x
2021-02-04 21:24
.npmignore
13
B
-rw-r--r--
2011-08-26 10:17
README.markdown
1.78
KB
-rw-r--r--
2011-08-26 10:17
index.js
2.18
KB
-rw-r--r--
2011-08-26 10:17
package.json
1.49
KB
-rw-r--r--
2021-02-04 21:24
Save
Rename
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"`.