@ckeditor/ckeditor5-utils
Version:
Miscellaneous utilities used by CKEditor 5.
19 lines (18 loc) • 432 B
JavaScript
/**
* @license Copyright (c) 2003-2025, CKSource Holding sp. z o.o. All rights reserved.
* For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-licensing-options
*/
/**
* @module utils/dom/remove
*/
/**
* Removes given node from parent.
*
* @param node Node to remove.
*/
export default function remove(node) {
const parent = node.parentNode;
if (parent) {
parent.removeChild(node);
}
}