backport
Version:
A CLI tool that automates the process of backporting commits
12 lines • 358 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.sequentially = void 0;
async function sequentially(items, handler) {
const results = [];
for (const item of items) {
results.push(await handler(item));
}
return results;
}
exports.sequentially = sequentially;
//# sourceMappingURL=sequentially.js.map