keycloakify
Version:
Framework to create custom Keycloak UIs
10 lines • 373 B
JavaScript
;
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);
};
}
//# sourceMappingURL=HTMLElement.prototype.prepend.js.map