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.119.112.17
Domains :
Cant Read [ /etc/named.conf ]
User : web
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
home /
www /
wb /
node_modules /
fast-glob /
out /
readers /
Delete
Unzip
Name
Size
Permission
Date
Action
reader.d.ts
714
B
-rw-rw-r--
2022-08-30 11:49
reader.js
1.04
KB
-rw-rw-r--
2022-08-30 11:49
stream.d.ts
566
B
-rw-rw-r--
2022-08-30 11:49
stream.js
1.83
KB
-rw-rw-r--
2022-08-30 11:49
sync.d.ts
506
B
-rw-rw-r--
2022-08-30 11:49
sync.js
1.3
KB
-rw-rw-r--
2022-08-30 11:49
Save
Rename
/// <reference types="node" /> import * as fs from 'fs'; import * as fsStat from '@nodelib/fs.stat'; import Settings from '../settings'; import { Entry, ErrnoException, Pattern, ReaderOptions } from '../types'; export default abstract class Reader<T> { protected readonly _settings: Settings; protected readonly _fsStatSettings: fsStat.Settings; constructor(_settings: Settings); abstract dynamic(root: string, options: ReaderOptions): T; abstract static(patterns: Pattern[], options: ReaderOptions): T; protected _getFullEntryPath(filepath: string): string; protected _makeEntry(stats: fs.Stats, pattern: Pattern): Entry; protected _isFatalError(error: ErrnoException): boolean; }