cloudcmd/common/try-to-promise-all.js
2026-02-03 15:03:49 +02:00

12 lines
225 B
JavaScript

import {tryToCatch} from 'try-to-catch';
const all = Promise.all.bind(Promise);
export default async (a) => {
const [e, result = []] = await tryToCatch(all, a);
return [
e,
...result,
];
};