Linux v69820.1blu.de 4.15.0 #1 SMP Mon Sep 30 15:36:27 MSK 2024 x86_64
Apache/2.4.58
Server IP : 195.90.215.149 & Your IP : 216.73.216.250
Domains :
Cant Read [ /etc/named.conf ]
User : www-data
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
usr /
share /
nodejs /
is-stream /
Delete
Unzip
Name
Size
Permission
Date
Action
dhnodejsBundle.cjs
983
B
-rw-r--r--
2022-04-12 05:32
index.cjs
547
B
-rw-r--r--
2022-04-12 05:32
index.d.ts
1.9
KB
-rw-r--r--
2022-04-12 05:32
index.js
746
B
-rw-r--r--
2022-04-12 05:32
package.json
1.07
KB
-rw-r--r--
2022-04-12 05:32
pkgjs-lock.json
324
B
-rw-r--r--
2022-04-12 05:32
Save
Rename
export function isStream(stream) { return stream !== null && typeof stream === 'object' && typeof stream.pipe === 'function'; } export function isWritableStream(stream) { return isStream(stream) && stream.writable !== false && typeof stream._write === 'function' && typeof stream._writableState === 'object'; } export function isReadableStream(stream) { return isStream(stream) && stream.readable !== false && typeof stream._read === 'function' && typeof stream._readableState === 'object'; } export function isDuplexStream(stream) { return isWritableStream(stream) && isReadableStream(stream); } export function isTransformStream(stream) { return isDuplexStream(stream) && typeof stream._transform === 'function'; }