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.35
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 /
pigeon /
node_modules /
ignore /
Delete
Unzip
Name
Size
Permission
Date
Action
README.md
7.27
KB
-rwxr-xr-x
1985-10-26 09:15
ignore.js
11.5
KB
-rw-r--r--
1985-10-26 09:15
index.d.ts
1.06
KB
-rw-r--r--
1985-10-26 09:15
package.json
2.21
KB
-rw-r--r--
2022-06-27 18:41
Save
Rename
interface Ignore { /** * Adds a rule rules to the current manager. * @param {string | Ignore} pattern * @returns IgnoreBase */ add(pattern: string | Ignore): Ignore /** * Adds several rules to the current manager. * @param {string[]} patterns * @returns IgnoreBase */ add(patterns: (string | Ignore)[]): Ignore /** * 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(paths: string[]): string[] /** * Creates a filter function which could filter * an array of paths with Array.prototype.filter. */ createFilter(): (path: string) => boolean /** * Returns Boolean whether pathname should be ignored. * @param {string} pathname a path to check * @returns boolean */ ignores(pathname: string): boolean } /** * Creates new ignore manager. */ declare function ignore(): Ignore export default ignore