Files
notification-elements-demo/node_modules/license-webpack-plugin/dist/ChunkIncludeExcludeTester.js
Giuliano Silvestro 5d0c9ec7eb Initial commit: notification-elements-demo app
Interactive Angular 19 demo for @sda/notification-elements-ui with
6 sections: Bell & Feed, Notification Center, Inbox, Comments &
Threads, Mention Input, and Full-Featured layout. Includes mock
data, dark mode toggle, and real-time event log.

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
2026-02-13 21:49:19 +10:00

31 lines
1.3 KiB
JavaScript

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