jest-allure2-reporter
Version:
Idiomatic Jest reporter for Allure Framework
12 lines • 387 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.constantExtractor = constantExtractor;
function constantExtractor(maybeExtractor) {
if (maybeExtractor == null) {
return undefined;
}
return typeof maybeExtractor === 'function'
? maybeExtractor
: () => maybeExtractor;
}
//# sourceMappingURL=constantExtractor.js.map