UNPKG

@ungap/replace-children

Version:

A ParentNode.replaceChildren polyfill

7 lines (6 loc) 180 B
if (!document.replaceChildren) Node.prototype.replaceChildren = function () { this.textContent = ''; if (arguments.length) this.append.apply(this, arguments); };