mirror of
https://github.com/laoxong/nofx.git
synced 2026-06-07 11:17:56 +08:00
5aa50d35d7
- Multi-AI competition mode (Qwen vs DeepSeek) - Binance Futures integration - AI self-learning mechanism - Professional web dashboard - Complete risk management system
15 lines
266 B
JavaScript
15 lines
266 B
JavaScript
"use strict";
|
|
Object.defineProperty(exports, "__esModule", {
|
|
value: true
|
|
});
|
|
Object.defineProperty(exports, "tap", {
|
|
enumerable: true,
|
|
get: function() {
|
|
return tap;
|
|
}
|
|
});
|
|
function tap(value, mutator) {
|
|
mutator(value);
|
|
return value;
|
|
}
|