HEX
Server: nginx/1.24.0
System: Linux nowruzgan 6.8.0-57-generic #59-Ubuntu SMP PREEMPT_DYNAMIC Sat Mar 15 17:40:59 UTC 2025 x86_64
User: babak (1000)
PHP: 8.3.6
Disabled: NONE
Upload Files
File: /var/dev/shahnamag/front-end/node_modules/license-webpack-plugin/dist/ChunkIncludeExcludeTester.js
"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
exports.ChunkIncludeExcludeTester = void 0;
var ChunkIncludeExcludeTester = /** @class */ (function () {
    function ChunkIncludeExcludeTester(includeExcludeTest) {
        this.includeExcludeTest = includeExcludeTest;
    }
    ChunkIncludeExcludeTester.prototype.isIncluded = function (chunkName) {
        if (typeof this.includeExcludeTest === 'function') {
            return this.includeExcludeTest(chunkName);
        }
        // only include
        if (this.includeExcludeTest.include && !this.includeExcludeTest.exclude) {
            return this.includeExcludeTest.include.indexOf(chunkName) > -1;
        }
        // only exclude
        if (this.includeExcludeTest.exclude && !this.includeExcludeTest.include) {
            // included as long as it's not excluded
            return !(this.includeExcludeTest.exclude.indexOf(chunkName) > -1);
        }
        // include and exclude together
        if (this.includeExcludeTest.include && this.includeExcludeTest.exclude) {
            return (!(this.includeExcludeTest.exclude.indexOf(chunkName) > -1) &&
                this.includeExcludeTest.include.indexOf(chunkName) > -1);
        }
        return true;
    };
    return ChunkIncludeExcludeTester;
}());
exports.ChunkIncludeExcludeTester = ChunkIncludeExcludeTester;