// Function to insert element after reference elementexportfunctioninsertAfter(newNode, referenceNode) {
const parentNode = referenceNode.parentNode;
parentNode.insertBefore(newNode, referenceNode.nextSibling);
}
//# sourceMappingURL=insertAfter.function.js.map