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.141.164.253
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 /
block-stream /
Delete
Unzip
Name
Size
Permission
Date
Action
LICENCE
1.29
KB
-rw-r--r--
2012-03-16 23:15
LICENSE
765
B
-rw-r--r--
2015-05-20 07:03
README.md
369
B
-rw-r--r--
2011-10-07 03:09
block-stream.js
6.4
KB
-rw-r--r--
2013-04-17 20:57
package.json
1.4
KB
-rw-r--r--
2021-02-04 21:24
Save
Rename
# block-stream A stream of blocks. Write data into it, and it'll output data in buffer blocks the size you specify, padding with zeroes if necessary. ```javascript var block = new BlockStream(512) fs.createReadStream("some-file").pipe(block) block.pipe(fs.createWriteStream("block-file")) ``` When `.end()` or `.flush()` is called, it'll pad the block with zeroes.