Linux unitednationsplay.com 3.10.0-1160.45.1.el7.x86_64 #1 SMP Wed Oct 13 17:20:51 UTC 2021 x86_64
nginx/1.20.1
Server IP : 188.130.139.92 & Your IP : 18.189.184.208
Domains :
Cant Read [ /etc/named.conf ]
User : web
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
home /
www /
unp /
node_modules /
through /
test /
Delete
Unzip
Name
Size
Permission
Date
Action
async.js
629
B
-rw-r--r--
2014-06-02 23:12
auto-destroy.js
516
B
-rw-r--r--
2014-06-02 23:12
buffering.js
1.47
KB
-rw-r--r--
2014-06-02 23:12
end.js
707
B
-rw-r--r--
2014-06-02 23:12
index.js
2.31
KB
-rw-r--r--
2015-04-06 04:59
Save
Rename
var from = require('from') var through = require('../') var tape = require('tape') tape('simple async example', function (t) { var n = 0, expected = [1,2,3,4,5], actual = [] from(expected) .pipe(through(function(data) { this.pause() n ++ setTimeout(function(){ console.log('pushing data', data) this.push(data) this.resume() }.bind(this), 300) })).pipe(through(function(data) { console.log('pushing data second time', data); this.push(data) })).on('data', function (d) { actual.push(d) }).on('end', function() { t.deepEqual(actual, expected) t.end() }) })