UNPKG

tnt-form

Version:
13 lines (9 loc) 248 B
"use strict"; var dom = {}; dom.remove = function (htmlElement) { htmlElement.parentNode.removeChild(htmlElement); }; dom.prepend = function (parent, htmlElement) { parent.insertBefore(htmlElement, parent.firstChild); }; module.exports = dom;