mirror of
https://github.com/NoFxAiOS/nofx.git
synced 2026-06-25 15:11:22 +08:00
- Multi-AI competition mode (Qwen vs DeepSeek) - Binance Futures integration - AI self-learning mechanism - Professional web dashboard - Complete risk management system
15 lines
235 B
JavaScript
15 lines
235 B
JavaScript
'use strict';
|
|
|
|
// This is a placeholder for util.js in node.js land.
|
|
|
|
const {
|
|
ObjectCreate,
|
|
ObjectFreeze,
|
|
} = require('./primordials');
|
|
|
|
const kEmptyObject = ObjectFreeze(ObjectCreate(null));
|
|
|
|
module.exports = {
|
|
kEmptyObject,
|
|
};
|