!C99Shell v. 2.5 [PHP 8 Update] [24.05.2025]!

Software: Apache/2.4.41 (Ubuntu). PHP/8.0.30 

uname -a: Linux apirnd 5.4.0-204-generic #224-Ubuntu SMP Thu Dec 5 13:38:28 UTC 2024 x86_64 

uid=33(www-data) gid=33(www-data) groups=33(www-data) 

Safe-mode: OFF (not secure)

/var/www/html/beximco/mrp_process/node_modules/@humanwhocodes/gitignore-to-minimatch/dist/   drwxr-xr-x
Free 13.07 GB of 57.97 GB (22.54%)
Home    Back    Forward    UPDIR    Refresh    Search    Buffer    Encoder    Tools    Proc.    FTP brute    Sec.    SQL    PHP-code    Update    Self remove    Logout    


Viewing file:     gitignore-to-minimatch.js (1.76 KB)      -rw-r--r--
Select action/file-type:
(+) | (+) | (+) | Code (+) | Session (+) | (+) | SDB (+) | (+) | (+) | (+) | (+) | (+) |
/**
 * @fileoverview Utility to convert gitignore patterns to minimatch.
 * @author Nicholas C. Zakas
 */

/**
 * Converts a gitignore pattern to a minimatch pattern.
 * @param {string} pattern The gitignore pattern to convert. 
 * @returns {string} A minimatch pattern equivalent to `pattern`.
 */
function gitignoreToMinimatch(pattern) {

    if (typeof pattern !== "string") {
        throw new TypeError("Argument must be a string.");
    }

    // Special case: Empty string
    if (!pattern) {
        return pattern;
    }

    // strip off negation to make life easier
    const negated = pattern.startsWith("!");
    let patternToTest = negated ? pattern.slice(1) : pattern;
    let result = patternToTest;
    let leadingSlash = false;

    // strip off leading slash
    if (patternToTest[0] === "/") {
        leadingSlash = true;
        result = patternToTest.slice(1);
    }

    // For the most part, the first character determines what to do
    switch (result[0]) {

        case "*":
            if (patternToTest[1] !== "*") {
                result = "**/" + result;
            }
            break;

        default:
            if (!leadingSlash && !result.includes("/") || result.endsWith("/")) {
                result = "**/" + result;
            }

            // no further changes if the pattern ends with a wildcard
            if (result.endsWith("*") || result.endsWith("?")) {
                break;
            }

            // differentiate between filenames and directory names
            if (!/\.[a-z\d_-]+$/.test(result)) {
                if (!result.endsWith("/")) {
                    result += "/";
                }

                result += "**";
            }
    }

    return negated ? "!" + result : result;

}

export { gitignoreToMinimatch };

:: Command execute ::

Enter:
 
Select:
 

:: Search ::
  - regexp 

:: Upload ::
 
[ Read-Only ]

:: Make Dir ::
 
[ Read-Only ]
:: Make File ::
 
[ Read-Only ]

:: Go Dir ::
 
:: Go File ::
 

--[ c99shell v. 2.5 [PHP 8 Update] [24.05.2025] | Generation time: 0.0069 ]--