UNPKG

@stryker-mutator/core

Version:

The extendable JavaScript mutation testing framework

11 lines 327 B
export class MultiPreprocessor { constructor(preprocessors) { this.preprocessors = preprocessors; } async preprocess(project) { for await (const preprocessor of this.preprocessors) { await preprocessor.preprocess(project); } } } //# sourceMappingURL=multi-preprocessor.js.map