1
0
mirror of https://github.com/actions/setup-python.git synced 2026-04-16 19:15:39 +02:00
Files
actions-setup-python/node_modules/rsvp/lib/rsvp/all.js
T
Danny McCormick 39c08a0eaa Initial pass
2019-06-26 21:12:00 -04:00

17 lines
335 B
JavaScript

import Promise from "./promise";
/**
This is a convenient alias for `Promise.all`.
@method all
@public
@static
@for rsvp
@param {Array} array Array of promises.
@param {String} [label] An optional label. This is useful
for tooling.
*/
export default function all(array, label) {
return Promise.all(array, label);
}