- itsm/ -> workspace/guardia-itsm/ - manager/ -> workspace/guardia-manager/ - app/ -> workspace/guardia-messenger/ - manual/ -> workspace/guardia-docs/ workspace/zioinfo-web/ unchanged. git mv preserves full commit history. Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
26 lines
527 B
JavaScript
26 lines
527 B
JavaScript
"use strict";
|
|
|
|
exports.__esModule = true;
|
|
exports.default = insertAfter;
|
|
|
|
/**
|
|
* Inserts a node after a given reference node.
|
|
*
|
|
* @param node the node to insert
|
|
* @param refNode the reference node
|
|
*/
|
|
function insertAfter(node, refNode) {
|
|
if (node && refNode && refNode.parentNode) {
|
|
if (refNode.nextSibling) {
|
|
refNode.parentNode.insertBefore(node, refNode.nextSibling);
|
|
} else {
|
|
refNode.parentNode.appendChild(node);
|
|
}
|
|
|
|
return node;
|
|
}
|
|
|
|
return null;
|
|
}
|
|
|
|
module.exports = exports["default"]; |