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 : 3.135.246.88
Domains :
Cant Read [ /etc/named.conf ]
User : web
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
home /
www /
unp-musonza /
node_modules /
from2 /
Delete
Unzip
Name
Size
Permission
Date
Action
.travis.yml
109
B
-rw-r--r--
2015-06-17 04:31
LICENSE.md
1.06
KB
-rw-r--r--
2015-06-15 04:47
README.md
2.54
KB
-rw-r--r--
2016-01-27 10:08
index.js
2.02
KB
-rw-r--r--
2016-08-15 17:14
package.json
1.52
KB
-rw-r--r--
2021-02-04 21:24
test.js
2.61
KB
-rw-r--r--
2015-07-15 16:34
Save
Rename
var test = require('tape') var path = require('path') var from = require('./') var fs = require('fs') var tmp = path.resolve( __dirname, 'tmp.txt' ) function fromString(string) { return from(function(size, next) { if (string.length <= 0) return next(null, null) var chunk = string.slice(0, size) string = string.slice(size) next(null, chunk) }) } test('from2', function(t) { var contents = fs.readFileSync(__filename, 'utf8') var stream = fromString(contents) stream .pipe(fs.createWriteStream(tmp)) .on('close', function() { t.equal(fs.readFileSync(tmp, 'utf8'), contents) fs.unlinkSync(tmp) t.end() }) }) test('old mode', function(t) { var contents = fs.readFileSync(__filename, 'utf8') var stream = fromString(contents) var buffer = '' stream.on('data', function(data) { buffer += data }).on('end', function() { t.equal(buffer, contents) t.end() }) }) test('destroy', function(t) { var stream = from(function(size, next) { process.nextTick(function() { next(null, 'no') }) }) stream.on('data', function(data) { t.ok(false) }).on('close', function() { t.ok(true) t.end() }) stream.destroy() }) test('arrays', function (t) { var input = ['a', 'b', 'c'] var stream = from(input) var output = [] stream.on('data', function (letter) { output.push(letter.toString()) }) stream.on('end', function () { t.deepEqual(input, output) t.end() }) }) test('obj arrays', function (t) { var input = [{foo:'a'}, {foo:'b'}, {foo:'c'}] var stream = from.obj(input) var output = [] stream.on('data', function (letter) { output.push(letter) }) stream.on('end', function () { t.deepEqual(input, output) t.end() }) }) test('arrays can emit errors', function (t) { var input = ['a', 'b', new Error('ooops'), 'c'] var stream = from(input) var output = [] stream.on('data', function (letter) { output.push(letter.toString()) }) stream.on('error', function(e){ t.deepEqual(['a', 'b'], output) t.equal('ooops', e.message) t.end() }) stream.on('end', function () { t.fail('the stream should have errored') }) }) test('obj arrays can emit errors', function (t) { var input = [{foo:'a'}, {foo:'b'}, new Error('ooops'), {foo:'c'}] var stream = from.obj(input) var output = [] stream.on('data', function (letter) { output.push(letter) }) stream.on('error', function(e){ t.deepEqual([{foo:'a'}, {foo:'b'}], output) t.equal('ooops', e.message) t.end() }) stream.on('end', function () { t.fail('the stream should have errored') }) })