Linux vps-61133.fhnet.fr 4.9.0-19-amd64 #1 SMP Debian 4.9.320-2 (2022-06-30) x86_64
Apache/2.4.25 (Debian)
Server IP : 93.113.207.21 & Your IP : 216.73.216.119
Domains :
Cant Read [ /etc/named.conf ]
User : www-data
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
var /
www /
html_old /
iNetty /
node_modules /
ignore /
Delete
Unzip
Name
Size
Permission
Date
Action
LICENSE-MIT
1.07
KB
-rw-r--r--
2022-04-21 14:25
README.md
11.48
KB
-rw-r--r--
2022-04-21 14:25
index.d.ts
1.46
KB
-rw-r--r--
2022-04-21 14:25
index.js
15.09
KB
-rw-r--r--
2022-04-21 14:25
legacy.js
16.79
KB
-rw-r--r--
2022-04-21 14:25
package.json
1.84
KB
-rw-r--r--
2022-04-21 14:25
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