2018-01-15 02:13:42 +01:00
|
|
|
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)
|
|
|
|
}
|
|
|
|
})
|
|
|
|
})
|
|
|
|
|
2018-01-15 08:24:27 +01:00
|
|
|
const importTimeline = () => import(
|
|
|
|
/* webpackChunkName: 'Timeline' */ '../_components/Timeline.html'
|
|
|
|
).then(mod => mod.default)
|
|
|
|
|
2018-01-17 05:34:09 +01:00
|
|
|
const importIntersectionObserver = () => import(
|
2018-01-19 16:17:33 +01:00
|
|
|
/* webpackChunkName: 'intersection-observer' */ 'intersection-observer'
|
2018-01-17 05:34:09 +01:00
|
|
|
)
|
|
|
|
|
2018-01-17 09:06:24 +01:00
|
|
|
const importRequestIdleCallback = () => import(
|
|
|
|
/* webpackChunkName: 'requestidlecallback' */ 'requestidlecallback'
|
|
|
|
)
|
|
|
|
|
2018-01-19 05:57:15 +01:00
|
|
|
const importIndexedDBGetAllShim = () => import(
|
|
|
|
/* webpackChunkName: 'indexeddb-getall-shim' */ 'indexeddb-getall-shim'
|
|
|
|
)
|
|
|
|
|
2018-01-15 02:13:42 +01:00
|
|
|
export {
|
2018-01-15 02:50:29 +01:00
|
|
|
importURLSearchParams,
|
2018-01-17 05:34:09 +01:00
|
|
|
importTimeline,
|
2018-01-17 09:06:24 +01:00
|
|
|
importIntersectionObserver,
|
2018-01-19 05:57:15 +01:00
|
|
|
importRequestIdleCallback,
|
2018-01-19 08:37:43 +01:00
|
|
|
importIndexedDBGetAllShim
|
2018-01-15 02:13:42 +01:00
|
|
|
}
|