5.0.0
版本发布时间: 2016-04-28 12:08:20
taylorhakes/promise-polyfill最新发布版本:8.2.2(2022-03-12 14:59:17)
Removed non standard functionality of passing multiple params to Promise.all. You must pass an array now. You must change this code
Promise.all(prom1, prom2, prom3);
to this
Promise.all([prom1, prom2, prom3]);