function browserSupportsAllFeatures() {
return window.Promise
&& window.fetch
&& window.URL
&& window.URLSearchParams
&& window.WeakMap
// object-fit support
&& ('objectFit' in document.documentElement.style);
}
function loadScript(src) {
var js = document.createElement('script');
js.src = src;
js.onerror = function () {
console.error('Failed to load polyfill script ' + src);
};
document.head.appendChild(js);
}
if (!browserSupportsAllFeatures()) {
loadScript('/dist/theme-bundle.polyfills.js');
}