BOC v1.0: RS256 auth, Ledger integration, Prometheus metrics, CI/CD, backup
This commit is contained in:
+13
@@ -0,0 +1,13 @@
|
||||
/**
|
||||
* 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;
|
||||
}
|
||||
Reference in New Issue
Block a user