@abaplint/core
Version:
abaplint - Core API
15 lines • 436 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.ExcludeHelper = void 0;
class ExcludeHelper {
static isExcluded(filename, excludePatterns) {
for (const exclude of excludePatterns) {
if (exclude.exec(filename)) {
return true;
}
}
return false;
}
}
exports.ExcludeHelper = ExcludeHelper;
//# sourceMappingURL=excludeHelper.js.map