UNPKG
@edflex-tech/keycloakify
Version:
latest (5.9.1-rc.4)
5.9.1-rc.4
5.9.1-rc.3
Keycloak theme generator for Reacts app
github.com/garronej/keycloakify
edflex-tech/keycloakify
@edflex-tech/keycloakify
/
src
/
lib
/
tools
/
HTMLElement.prototype.prepend.ts
10 lines
(8 loc)
•
303 B
text/typescript
View Raw
1
2
3
4
5
6
7
8
9
10
if
(!
HTMLElement
.
prototype
.
prepend
) {
HTMLElement
.
prototype
.
prepend
=
function
(
childNode
) {
if
(
typeof
childNode ===
"string"
) {
throw
new
Error
(
"Error with HTMLElement.prototype.appendFirst polyfill"
); }
this
.
insertBefore
(childNode,
this
.
firstChild
); }; }