mirror of
https://github.com/NoFxAiOS/nofx.git
synced 2026-06-30 09:31:19 +08:00
- Multi-AI competition mode (Qwen vs DeepSeek) - Binance Futures integration - AI self-learning mechanism - Professional web dashboard - Complete risk management system
20 lines
325 B
JavaScript
20 lines
325 B
JavaScript
"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"]; |