Francesco Torchia 4f2688f6ab
Add pkg/harvester components + shell portings - 1
Signed-off-by: Francesco Torchia <francesco.torchia@suse.com>
2024-10-23 17:00:46 +02:00

19 lines
394 B
JavaScript

export function allSettled(hash) {
const keys = Object.keys(hash);
const promises = Object.values(hash);
return Promise.allSettled(promises).then((res) => {
const out = {};
for ( let i = 0 ; i < keys.length ; i++ ) {
if (res[i].status === 'fulfilled') {
out[keys[i]] = res[i].value;
} else {
out[keys[i]] = [];
}
}
return out;
});
}