Linux v69820.1blu.de 4.15.0 #1 SMP Mon Sep 30 15:36:27 MSK 2024 x86_64
Apache/2.4.58
Server IP : 195.90.215.149 & Your IP : 216.73.216.250
Domains :
Cant Read [ /etc/named.conf ]
User : www-data
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
usr /
share /
nodejs /
fetch-blob /
Delete
Unzip
Name
Size
Permission
Date
Action
file.d.ts
102
B
-rw-r--r--
2023-12-22 10:39
file.js
1.2
KB
-rw-r--r--
2023-12-22 10:39
from.d.ts
1.72
KB
-rw-r--r--
2023-12-22 10:39
from.js
4.33
KB
-rw-r--r--
2023-12-22 10:39
index.d.ts
102
B
-rw-r--r--
2023-12-22 10:39
index.js
7.38
KB
-rw-r--r--
2023-12-22 10:39
package.json
1.61
KB
-rw-r--r--
2023-12-22 10:39
pkgjs-lock.json
746
B
-rw-r--r--
2023-12-22 10:39
streams.cjs
1.57
KB
-rw-r--r--
2023-12-22 10:39
Save
Rename
/* c8 ignore start */ // 64 KiB (same size chrome slice theirs blob into Uint8array's) const POOL_SIZE = 65536 if (!globalThis.ReadableStream) { // `node:stream/web` got introduced in v16.5.0 as experimental // and it's preferred over the polyfilled version. So we also // suppress the warning that gets emitted by NodeJS for using it. try { const process = require('node:process') const { emitWarning } = process try { process.emitWarning = () => {} Object.assign(globalThis, require('node:stream/web')) process.emitWarning = emitWarning } catch (error) { process.emitWarning = emitWarning throw error } } catch (error) { // fallback to polyfill implementation Object.assign(globalThis, require('web-streams-polyfill/dist/ponyfill.es2018.js')) } } try { // Don't use node: prefix for this, require+node: is not supported until node v14.14 // Only `import()` can use prefix in 12.20 and later const { Blob } = require('buffer') if (Blob && !Blob.prototype.stream) { Blob.prototype.stream = function name (params) { let position = 0 const blob = this return new ReadableStream({ type: 'bytes', async pull (ctrl) { const chunk = blob.slice(position, Math.min(blob.size, position + POOL_SIZE)) const buffer = await chunk.arrayBuffer() position += buffer.byteLength ctrl.enqueue(new Uint8Array(buffer)) if (position === blob.size) { ctrl.close() } } }) } } } catch (error) {} /* c8 ignore end */