backport
Version:
A CLI tool that automates the process of backporting commits
9 lines • 346 B
JavaScript
/** Generic utility: runs an async handler on each item sequentially. Not backport-specific; see run-sequentially.ts. */
export async function sequentially(items, handler) {
const results = [];
for (const item of items) {
results.push(await handler(item));
}
return results;
}
//# sourceMappingURL=sequential-helper.js.map