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.15.28.86
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 /
ignore /
Delete
Unzip
Name
Size
Permission
Date
Action
LICENSE-MIT
1.07
KB
-rw-rw-r--
2022-08-30 11:49
README.md
11.48
KB
-rw-rw-r--
2022-08-30 11:49
index.d.ts
1.46
KB
-rw-rw-r--
2022-08-30 11:49
index.js
15.09
KB
-rw-rw-r--
2022-08-30 11:49
legacy.js
16.79
KB
-rw-rw-r--
2022-08-30 11:49
package.json
1.84
KB
-rw-rw-r--
2022-08-30 11:49
Save
Rename
type Pathname = string interface TestResult { ignored: boolean unignored: boolean } export interface Ignore { /** * Adds one or several rules to the current manager. * @param {string[]} patterns * @returns IgnoreBase */ add(patterns: string | Ignore | readonly (string | Ignore)[]): this /** * Filters the given array of pathnames, and returns the filtered array. * NOTICE that each path here should be a relative path to the root of your repository. * @param paths the array of paths to be filtered. * @returns The filtered array of paths */ filter(pathnames: readonly Pathname[]): Pathname[] /** * Creates a filter function which could filter * an array of paths with Array.prototype.filter. */ createFilter(): (pathname: Pathname) => boolean /** * Returns Boolean whether pathname should be ignored. * @param {string} pathname a path to check * @returns boolean */ ignores(pathname: Pathname): boolean /** * Returns whether pathname should be ignored or unignored * @param {string} pathname a path to check * @returns TestResult */ test(pathname: Pathname): TestResult } interface Options { ignorecase?: boolean // For compatibility ignoreCase?: boolean allowRelativePaths?: boolean } /** * Creates new ignore manager. */ declare function ignore(options?: Options): Ignore declare namespace ignore { export function isPathValid (pathname: string): boolean } export default ignore