You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 

30 lines
1.3 KiB

"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;