Linux premium71.web-hosting.com 4.18.0-513.11.1.lve.el8.x86_64 #1 SMP Thu Jan 18 16:21:02 UTC 2024 x86_64
LiteSpeed
Server IP : 198.187.29.8 & Your IP : 3.145.200.8
Domains :
Cant Read [ /etc/named.conf ]
User : cleahvkv
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
lib /
node_modules /
npm /
node_modules /
get-stream /
Delete
Unzip
Name
Size
Permission
Date
Action
buffer-stream.js
841
B
-rw-r--r--
2021-03-10 14:36
index.js
1.22
KB
-rw-r--r--
2021-03-10 14:36
license
1.08
KB
-rw-r--r--
2021-03-10 14:36
package.json
1.87
KB
-rw-r--r--
2021-03-10 14:36
readme.md
3.87
KB
-rw-r--r--
2021-03-10 14:36
Save
Rename
'use strict'; const {PassThrough} = require('stream'); module.exports = options => { options = Object.assign({}, options); const {array} = options; let {encoding} = options; const buffer = encoding === 'buffer'; let objectMode = false; if (array) { objectMode = !(encoding || buffer); } else { encoding = encoding || 'utf8'; } if (buffer) { encoding = null; } let len = 0; const ret = []; const stream = new PassThrough({objectMode}); if (encoding) { stream.setEncoding(encoding); } stream.on('data', chunk => { ret.push(chunk); if (objectMode) { len = ret.length; } else { len += chunk.length; } }); stream.getBufferedValue = () => { if (array) { return ret; } return buffer ? Buffer.concat(ret, len) : ret.join(''); }; stream.getBufferedLength = () => len; return stream; };