Files
swagger-ui/src/polyfills.js
2017-12-06 21:02:45 +02:00

11 lines
241 B
JavaScript

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