From 2a97fa4a036997a1ed6a081696706e4a959561d1 Mon Sep 17 00:00:00 2001 From: igoradamenko Date: Tue, 17 Apr 2018 12:21:22 +0300 Subject: [PATCH] remove promise unhandledrejection stub --- web/app/common/promises.js | 2 -- 1 file changed, 2 deletions(-) diff --git a/web/app/common/promises.js b/web/app/common/promises.js index 95885564..5cd91593 100644 --- a/web/app/common/promises.js +++ b/web/app/common/promises.js @@ -1,7 +1,5 @@ import Promise from 'promise-polyfill'; -Promise._unhandledRejectionFn = () => {}; - Promise.prototype.finally = function finallyFn(callback) { const constructor = this.constructor;