📁
SKYSHELL MANAGER
PHP v8.2.30
Create
Create
Path:
root
/
home
/
qooetu
/
costes.qooetu.com
/
Name
Size
Perm
Actions
📁
.well-known
-
0755
🗑️
🏷️
🔒
📁
6b114
-
0755
🗑️
🏷️
🔒
📁
Modules
-
0755
🗑️
🏷️
🔒
📁
app
-
0755
🗑️
🏷️
🔒
📁
assets
-
0755
🗑️
🏷️
🔒
📁
bootstrap
-
0755
🗑️
🏷️
🔒
📁
cgi-bin
-
0755
🗑️
🏷️
🔒
📁
config
-
0755
🗑️
🏷️
🔒
📁
css
-
0755
🗑️
🏷️
🔒
📁
database
-
0755
🗑️
🏷️
🔒
📁
images
-
0755
🗑️
🏷️
🔒
📁
js
-
0755
🗑️
🏷️
🔒
📁
nbproject
-
0755
🗑️
🏷️
🔒
📁
public
-
0755
🗑️
🏷️
🔒
📁
resources
-
0755
🗑️
🏷️
🔒
📁
routes
-
0755
🗑️
🏷️
🔒
📁
storage
-
0755
🗑️
🏷️
🔒
📁
tests
-
0755
🗑️
🏷️
🔒
📁
uploads
-
0755
🗑️
🏷️
🔒
📁
vendor
-
0755
🗑️
🏷️
🔒
📁
wp-admin
-
0755
🗑️
🏷️
🔒
📁
wp-content
-
0755
🗑️
🏷️
🔒
📁
wp-includes
-
0755
🗑️
🏷️
🔒
📄
.htaccess
0.23 KB
0444
🗑️
🏷️
⬇️
✏️
🔒
📄
COOKIE.txt
0.2 KB
0644
🗑️
🏷️
⬇️
✏️
🔒
📄
X7ROOT.txt
0.27 KB
0644
🗑️
🏷️
⬇️
✏️
🔒
📄
defaults.php
1.29 KB
0444
🗑️
🏷️
⬇️
✏️
🔒
📄
engine.php
0 KB
0644
🗑️
🏷️
⬇️
✏️
🔒
📄
error_log
813.08 KB
0644
🗑️
🏷️
⬇️
✏️
🔒
📄
features.php
11.28 KB
0644
🗑️
🏷️
⬇️
✏️
🔒
📄
googlecfb82e09419fc0f6.html
0.05 KB
0644
🗑️
🏷️
⬇️
✏️
🔒
📄
index.php0
1.56 KB
0644
🗑️
🏷️
⬇️
✏️
🔒
📄
inputs.php
0.12 KB
0644
🗑️
🏷️
⬇️
✏️
🔒
📄
kurd.html
1.07 KB
0644
🗑️
🏷️
⬇️
✏️
🔒
📄
library.php
0 KB
0644
🗑️
🏷️
⬇️
✏️
🔒
📄
min.php
6.83 KB
0444
🗑️
🏷️
⬇️
✏️
🔒
📄
p.php
2.75 KB
0644
🗑️
🏷️
⬇️
✏️
🔒
📄
php.ini
0.04 KB
0644
🗑️
🏷️
⬇️
✏️
🔒
📄
product.php
1.78 KB
0444
🗑️
🏷️
⬇️
✏️
🔒
📄
qpmwztts.php
0.74 KB
0644
🗑️
🏷️
⬇️
✏️
🔒
📄
robots.txt
0.38 KB
0444
🗑️
🏷️
⬇️
✏️
🔒
📄
tovmbkwh.php
0.74 KB
0644
🗑️
🏷️
⬇️
✏️
🔒
📄
tyyffovi.php
0.74 KB
0644
🗑️
🏷️
⬇️
✏️
🔒
📄
veoxv.html
1.23 KB
0644
🗑️
🏷️
⬇️
✏️
🔒
Edit: test.js
var Readable = require('stream').Readable var tape = require('tape') var union = require('./') tape('numbers', function (t) { var a = new Readable({objectMode: true}) var b = new Readable({objectMode: true}) a._read = b._read = function () {} a.push(4) a.push(6) a.push(10) a.push(14) a.push(15) a.push(20) a.push(22) a.push(null) b.push(6) b.push(11) b.push(20) b.push(null) var u = union(a, b) var expected = [4, 6, 10, 11, 14, 15, 20, 22] u.on('data', function (data) { t.same(data, expected.shift()) }) u.on('end', function () { t.same(expected.length, 0, 'no more data') t.end() }) }) tape('string', function (t) { var a = new Readable({objectMode: true}) var b = new Readable({objectMode: true}) a._read = b._read = function () {} a.push('04') a.push('06') a.push('10') a.push('14') a.push('15') a.push('20') a.push('22') a.push(null) b.push('06') b.push('11') b.push('20') b.push(null) var u = union(a, b) var expected = ['04', '06', '10', '11', '14', '15', '20', '22'] u.on('data', function (data) { t.same(data, expected.shift()) }) u.on('end', function () { t.same(expected.length, 0, 'no more data') t.end() }) }) tape('objects', function (t) { var a = new Readable({objectMode: true}) var b = new Readable({objectMode: true}) a._read = b._read = function () {} a.push({key: '04'}) a.push({key: '06'}) a.push({key: '10'}) a.push({key: '14'}) a.push({key: '15'}) a.push({key: '20'}) a.push({key: '22'}) a.push(null) b.push({key: '06'}) b.push({key: '11'}) b.push({key: '20'}) b.push(null) var u = union(a, b) var expected = [{key: '04'}, {key: '06'}, {key: '10'}, {key: '11'}, {key: '14'}, {key: '15'}, {key: '20'}, {key: '22'}] u.on('data', function (data) { t.same(data, expected.shift()) }) u.on('end', function () { t.same(expected.length, 0, 'no more data') t.end() }) }) tape('custom objects', function (t) { var a = new Readable({objectMode: true}) var b = new Readable({objectMode: true}) a._read = b._read = function () {} a.push({bar: '04'}) a.push({bar: '06'}) a.push({bar: '10'}) a.push({bar: '14'}) a.push({bar: '15'}) a.push({bar: '20'}) a.push({bar: '22'}) a.push(null) b.push({bar: '06'}) b.push({bar: '11'}) b.push({bar: '20'}) b.push(null) var u = union(a, b, function (data) { return data.bar }) var expected = [{bar: '04'}, {bar: '06'}, {bar: '10'}, {bar: '11'}, {bar: '14'}, {bar: '15'}, {bar: '20'}, {bar: '22'}] u.on('data', function (data) { t.same(data, expected.shift()) }) u.on('end', function () { t.same(expected.length, 0, 'no more data') t.end() }) }) tape('destroy stream', function (t) { var a = new Readable({objectMode: true}) var b = new Readable({objectMode: true}) a._read = function () {} b._read = function () {} t.plan(2) a.destroy = function () { t.ok(true) } b.destroy = function () { t.ok(true) } union(a, b).destroy() })
Save