Viewing File: /opt/alt/tests/alt-php83-pecl-jsmin_3.0.0-1.el8/tests/strip-comments.phpt

--TEST--
Strip extraneous spaces and comments
--FILE--
<?php

$js = <<<JS
/**
 * Test comments
 */

alert('test');
JS;

echo jsmin($js);

--EXPECT--

alert('test');
Back to Directory File Manager
<