UNPKG
@ishitatsuyuki/oruga-next
Version:
latest (0.5.5-direct-export)
0.5.5-direct-export
UI components for Vue.js and CSS framework agnostic
oruga.io
oruga-ui/oruga
@ishitatsuyuki/oruga-next
/
dist
/
cjs
/
ssr-4e5033ea.js
10 lines
(7 loc)
•
241 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
10
'use strict'
;
// Polyfills for SSR
const
isSSR =
typeof
window
===
'undefined'
;
const
HTMLElement
= isSSR ?
Object
:
window
.
HTMLElement
;
const
File
= isSSR ?
Object
:
window
.
File
;
exports
.
File
=
File
;
exports
.
HTMLElement
=
HTMLElement
;