mirror of
https://github.com/idanoo/GoScrobble.git
synced 2024-11-22 16:35:14 +00:00
13 lines
233 B
JavaScript
13 lines
233 B
JavaScript
/**
|
|
* Removes a given node from the DOM.
|
|
*
|
|
* @param node the node to remove
|
|
*/
|
|
export default function remove(node) {
|
|
if (node && node.parentNode) {
|
|
node.parentNode.removeChild(node);
|
|
return node;
|
|
}
|
|
|
|
return null;
|
|
} |