2017-05-30 13:11:15 +00:00
|
|
|
// Convenience function to load polyfills and return a promise when it's done.
|
|
|
|
// If there are no polyfills, then this is just Promise.resolve() which means
|
|
|
|
// it will execute in the same tick of the event loop (i.e. near-instant).
|
|
|
|
|
|
|
|
function importBasePolyfills() {
|
|
|
|
return import(/* webpackChunkName: "base_polyfills" */ './base_polyfills');
|
|
|
|
}
|
|
|
|
|
|
|
|
function importExtraPolyfills() {
|
|
|
|
return import(/* webpackChunkName: "extra_polyfills" */ './extra_polyfills');
|
|
|
|
}
|
|
|
|
|
|
|
|
function loadPolyfills() {
|
|
|
|
const needsBasePolyfills = !(
|
2018-04-23 07:15:51 +00:00
|
|
|
Array.prototype.includes &&
|
|
|
|
HTMLCanvasElement.prototype.toBlob &&
|
2017-05-30 13:11:15 +00:00
|
|
|
window.Intl &&
|
2018-04-23 07:15:51 +00:00
|
|
|
Number.isNaN &&
|
2017-05-30 13:11:15 +00:00
|
|
|
Object.assign &&
|
2018-03-08 12:07:25 +00:00
|
|
|
Object.values &&
|
2020-02-18 16:22:44 +00:00
|
|
|
window.Symbol &&
|
|
|
|
Promise.prototype.finally
|
2017-05-30 13:11:15 +00:00
|
|
|
);
|
|
|
|
|
|
|
|
// Latest version of Firefox and Safari do not have IntersectionObserver.
|
2017-07-13 23:59:34 +00:00
|
|
|
// Edge does not have requestIdleCallback and object-fit CSS property.
|
2017-05-30 13:11:15 +00:00
|
|
|
// This avoids shipping them all the polyfills.
|
|
|
|
const needsExtraPolyfills = !(
|
|
|
|
window.IntersectionObserver &&
|
2017-07-31 17:40:20 +00:00
|
|
|
window.IntersectionObserverEntry &&
|
|
|
|
'isIntersecting' in IntersectionObserverEntry.prototype &&
|
2017-07-13 23:59:34 +00:00
|
|
|
window.requestIdleCallback &&
|
|
|
|
'object-fit' in (new Image()).style
|
2017-05-30 13:11:15 +00:00
|
|
|
);
|
|
|
|
|
|
|
|
return Promise.all([
|
|
|
|
needsBasePolyfills && importBasePolyfills(),
|
|
|
|
needsExtraPolyfills && importExtraPolyfills(),
|
|
|
|
]);
|
|
|
|
}
|
|
|
|
|
|
|
|
export default loadPolyfills;
|