Sha256: 51a25259322db5164d75264f5330262a017fe3c32c6318df94aa4c069dd9d0b2
Contents?: true
Size: 328 Bytes
Versions: 7
Compression:
Stored size: 328 Bytes
Contents
import Promise from "./promise"; /** This is a convenient alias for `RSVP.Promise.all`. @method all @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); }
Version data entries
7 entries across 7 versions & 4 rubygems