AssetCompress\View\Helper\AssetCompressHelper::exists PHP Method

exists() public method

Check if a build exists (is defined and have at least one file) in the ini file.
public exists ( string $file ) : boolean
$file string Name of the build that will be checked if exists.
return boolean True if the build file exists.
    public function exists($file)
    {
        return $this->collection()->contains($file);
    }