doipjs/node_modules/@ungap/promise-all-settled/min.js

1 line
248 B
JavaScript
Raw Normal View History

2020-10-23 14:35:53 -06:00
var allSettled=Promise.allSettled||function(t){"use strict";var e=this;return e.all(t.map(function(t){return e.resolve(t).then(this.$,this._)},{$:function(t){return{status:"fulfilled",value:t}},_:function(t){return{status:"rejected",reason:t}}}))};