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 : 18.219.206.240
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 /
isstream /
Delete
Unzip
Name
Size
Permission
Date
Action
.npmignore
6
B
-rw-r--r--
2021-03-10 14:36
.travis.yml
150
B
-rw-r--r--
2021-03-10 14:36
LICENSE.md
1.1
KB
-rw-r--r--
2021-03-10 14:36
README.md
2.37
KB
-rw-r--r--
2021-03-10 14:36
isstream.js
588
B
-rw-r--r--
2021-03-10 14:36
package.json
1.62
KB
-rw-r--r--
2021-03-10 14:36
test.js
6.81
KB
-rw-r--r--
2021-03-10 14:36
Save
Rename
var stream = require('stream') function isStream (obj) { return obj instanceof stream.Stream } function isReadable (obj) { return isStream(obj) && typeof obj._read == 'function' && typeof obj._readableState == 'object' } function isWritable (obj) { return isStream(obj) && typeof obj._write == 'function' && typeof obj._writableState == 'object' } function isDuplex (obj) { return isReadable(obj) && isWritable(obj) } module.exports = isStream module.exports.isReadable = isReadable module.exports.isWritable = isWritable module.exports.isDuplex = isDuplex