/
ai_sampletext
/
DiplomWork
Обзор
Документация
Войти
/
ai_sampletext
/
DiplomWork
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
node_modules/dom-helpers/cjs/insertAfter.js
26 строк
527 B
boolyshareyo
Initial commit
08 июн 2026, 16:00
08 июн 2026, 16:00
6216a29
Код
Авторство
О чём код?
"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"];