pinafore/routes/_utils/loadPolyfills.js

16 lines
510 B
JavaScript
Raw Normal View History

2018-01-28 00:31:26 +00:00
import {
importURLSearchParams,
importIntersectionObserver,
importRequestIdleCallback,
2018-02-09 06:29:29 +00:00
importIndexedDBGetAllShim
2018-01-28 00:31:26 +00:00
} from './asyncModules'
2018-02-09 06:29:29 +00:00
export function loadPolyfills () {
2018-01-28 00:31:26 +00:00
return Promise.all([
typeof URLSearchParams === 'undefined' && importURLSearchParams(),
typeof IntersectionObserver === 'undefined' && importIntersectionObserver(),
typeof requestIdleCallback === 'undefined' && importRequestIdleCallback(),
!IDBObjectStore.prototype.getAll && importIndexedDBGetAllShim()
2018-01-28 00:31:26 +00:00
])
2018-02-09 06:29:29 +00:00
}