Skip to content

Commit

Permalink
Fix invalid option
Browse files Browse the repository at this point in the history
  • Loading branch information
taylorhakes committed Jun 13, 2019
1 parent 74d3029 commit 8d53c6b
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 2 deletions.
2 changes: 1 addition & 1 deletion dist/polyfill.js
Original file line number Diff line number Diff line change
Expand Up @@ -194,7 +194,7 @@ Promise.all = function(arr) {
if (!isArray(arr)) {
return reject(new TypeError('Promise.all accepts an array'));
}

var args = Array.prototype.slice.call(arr);
if (args.length === 0) return resolve([]);
var remaining = args.length;
Expand Down
1 change: 0 additions & 1 deletion rollup.umd.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,6 @@ if (process.env.NODE_ENV === 'production') {
pure_getters: true,
unsafe: true,
unsafe_comps: true,
warnings: false,
ie8: true
},
mangle: {
Expand Down

0 comments on commit 8d53c6b

Please sign in to comment.