/
ai_sampletext
/
DiplomWork
Обзор
Документация
Войти
/
ai_sampletext
/
DiplomWork
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
node_modules/dom-helpers/cjs/remove.js
20 строк
325 B
boolyshareyo
Initial commit
08 июн 2026, 16:00
08 июн 2026, 16:00
6216a29
Код
Авторство
О чём код?
"use strict"; exports.__esModule = true; exports.default = remove; /** * Removes a given node from the DOM. * * @param node the node to remove */ function remove(node) { if (node && node.parentNode) { node.parentNode.removeChild(node); return node; } return null; } module.exports = exports["default"];