UNPKG

jest-allure2-reporter

Version:
10 lines 433 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.maybePromiseAll = maybePromiseAll; const isPromiseLike_1 = require("./isPromiseLike"); function maybePromiseAll(maybePromiseArray, callback) { return maybePromiseArray.some(isPromiseLike_1.isPromiseLike) ? Promise.all(maybePromiseArray).then(callback) : callback(maybePromiseArray); } //# sourceMappingURL=maybePromiseAll.js.map