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 /
split /
[ HOME SHELL ]
Name
Size
Permission
Action
examples
[ DIR ]
drwxrwxr-x
test
[ DIR ]
drwxrwxr-x
.npmignore
42
B
-rw-rw-r--
.travis.yml
46
B
-rw-rw-r--
LICENCE
1.04
KB
-rw-rw-r--
index.js
1.48
KB
-rw-rw-r--
package.json
684
B
-rw-rw-r--
readme.markdown
1.54
KB
-rw-rw-r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : readme.markdown
# Split (matcher) [](http://travis-ci.org/dominictarr/split) Break up a stream and reassemble it so that each line is a chunk. matcher may be a `String`, or a `RegExp` Example, read every line in a file ... ``` js fs.createReadStream(file) .pipe(split()) .on('data', function (line) { //each chunk now is a seperate line! }) ``` `split` takes the same arguments as `string.split` except it defaults to '/\r?\n/' instead of ',', and the optional `limit` paremeter is ignored. [String#split](https://developer.mozilla.org/en/JavaScript/Reference/Global_Objects/String/split) `split` takes an optional options object on it's third argument. ``` js split(matcher, mapper, options) ``` Valid options: * maxLength - The maximum buffer length without seeing a newline or `matcher`, if a single line exceeds this, the split stream will emit an error. ``` js split(JSON.parse, null, { maxLength: 2}) ``` ## keep matched splitter As with `Array#split`, if you split by a regular expression with a matching group, the matches will be retained in the collection. ``` stdin .pipe(split(/(\r?\n)/)) ... //lines + separators. ``` # NDJ - Newline Delimited Json `split` accepts a function which transforms each line. ``` js fs.createReadStream(file) .pipe(split(JSON.parse)) .on('data', function (obj) { //each chunk now is a a js object }) .on('error', function (err) { //syntax errors will land here //note, this ends the stream. }) ``` # License MIT
Close