@stryker-mutator/core
Version:
The extendable JavaScript mutation testing framework
12 lines • 346 B
JavaScript
export class MultiPreprocessor {
preprocessors;
constructor(preprocessors) {
this.preprocessors = preprocessors;
}
async preprocess(project) {
for await (const preprocessor of this.preprocessors) {
await preprocessor.preprocess(project);
}
}
}
//# sourceMappingURL=multi-preprocessor.js.map