26 lines
848 B
JavaScript
26 lines
848 B
JavaScript
export const importURLSearchParams = () => import(
|
|
/* webpackChunkName: 'url-search-params' */ 'url-search-params'
|
|
).then(Params => {
|
|
window.URLSearchParams = Params
|
|
Object.defineProperty(window.URL.prototype, 'searchParams', {
|
|
get() {
|
|
return new Params(this.search)
|
|
}
|
|
})
|
|
})
|
|
|
|
export const importTimeline = () => import(
|
|
/* webpackChunkName: 'Timeline' */ '../_components/timeline/Timeline.html'
|
|
).then(mod => mod.default)
|
|
|
|
export const importIntersectionObserver = () => import(
|
|
/* webpackChunkName: 'intersection-observer' */ 'intersection-observer'
|
|
)
|
|
|
|
export const importRequestIdleCallback = () => import(
|
|
/* webpackChunkName: 'requestidlecallback' */ 'requestidlecallback'
|
|
)
|
|
|
|
export const importIndexedDBGetAllShim = () => import(
|
|
/* webpackChunkName: 'indexeddb-getall-shim' */ 'indexeddb-getall-shim'
|
|
) |