chore: remove unused deprecated polyfill.js file (#6345)

* config(dev): remove unused polyfills in webpack-dev
This commit is contained in:
Tim Lai
2020-08-27 12:19:57 -07:00
committed by GitHub
parent 6e386d5269
commit 0d63e70c8e
3 changed files with 0 additions and 15 deletions

View File

@@ -1,12 +0,0 @@
// Promise global, Used ( at least ) by 'whatwg-fetch'. And required by IE 11
import win from "core/window"
if(typeof win.Promise === "undefined") {
require("core-js/fn/promise")
}
// Required by IE 11
if(!String.prototype.startsWith) {
require("core-js/es6/string")
}