Unverified Commit f6c3215c authored by philn5d-ar's avatar philn5d-ar Committed by GitHub
Browse files

Add .finally to IE11 Promise

IE11 polyfill fails to provide .finally, this should do the trick.
1 merge request!11414Add .finally to IE11 Promise
Showing with 1 addition and 0 deletions
+1 -0
......@@ -12,6 +12,7 @@ if (typeof Promise === 'undefined') {
// and the user has no idea what causes React's erratic future behavior.
require('promise/lib/rejection-tracking').enable();
self.Promise = require('promise/lib/es6-extensions.js');
self.Promise = require('promise/lib/finally.js');
}
// Make sure we're in a Browser-like environment before importing polyfills
......
Supports Markdown
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment