mirror of
https://github.com/NoFxAiOS/nofx.git
synced 2026-07-06 20:41:14 +08:00
Initial commit: NOFX AI Trading System
- Multi-AI competition mode (Qwen vs DeepSeek) - Binance Futures integration - AI self-learning mechanism - Professional web dashboard - Complete risk management system
This commit is contained in:
27
web/node_modules/@babel/runtime/helpers/esm/wrapNativeSuper.js
generated
vendored
Normal file
27
web/node_modules/@babel/runtime/helpers/esm/wrapNativeSuper.js
generated
vendored
Normal file
@@ -0,0 +1,27 @@
|
||||
import getPrototypeOf from "./getPrototypeOf.js";
|
||||
import setPrototypeOf from "./setPrototypeOf.js";
|
||||
import isNativeFunction from "./isNativeFunction.js";
|
||||
import construct from "./construct.js";
|
||||
function _wrapNativeSuper(t) {
|
||||
var r = "function" == typeof Map ? new Map() : void 0;
|
||||
return _wrapNativeSuper = function _wrapNativeSuper(t) {
|
||||
if (null === t || !isNativeFunction(t)) return t;
|
||||
if ("function" != typeof t) throw new TypeError("Super expression must either be null or a function");
|
||||
if (void 0 !== r) {
|
||||
if (r.has(t)) return r.get(t);
|
||||
r.set(t, Wrapper);
|
||||
}
|
||||
function Wrapper() {
|
||||
return construct(t, arguments, getPrototypeOf(this).constructor);
|
||||
}
|
||||
return Wrapper.prototype = Object.create(t.prototype, {
|
||||
constructor: {
|
||||
value: Wrapper,
|
||||
enumerable: !1,
|
||||
writable: !0,
|
||||
configurable: !0
|
||||
}
|
||||
}), setPrototypeOf(Wrapper, t);
|
||||
}, _wrapNativeSuper(t);
|
||||
}
|
||||
export { _wrapNativeSuper as default };
|
||||
Reference in New Issue
Block a user