UNPKG

iam-keycloakify

Version:
10 lines (8 loc) 303 B
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); }; }