Files
swagger-ui/src/polyfills.js

13 lines
276 B
JavaScript

// 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")
}