mirror of
https://github.com/actions/setup-python.git
synced 2024-11-06 16:05:56 -05:00
16 lines
340 B
JavaScript
16 lines
340 B
JavaScript
import Promise from './promise';
|
|
|
|
/**
|
|
This is a convenient alias for `Promise.race`.
|
|
|
|
@method race
|
|
@public
|
|
@static
|
|
@for rsvp
|
|
@param {Array} array Array of promises.
|
|
@param {String} [label] An optional label. This is useful
|
|
for tooling.
|
|
*/
|
|
export default function race(array, label) {
|
|
return Promise.race(array, label);
|
|
}
|