mirror of
https://github.com/NoFxAiOS/nofx.git
synced 2026-06-30 17:41:22 +08:00
- Multi-AI competition mode (Qwen vs DeepSeek) - Binance Futures integration - AI self-learning mechanism - Professional web dashboard - Complete risk management system
12 lines
305 B
JavaScript
12 lines
305 B
JavaScript
"use strict";
|
|
exports.normalizeDates = normalizeDates;
|
|
var _index = require("../constructFrom.cjs");
|
|
|
|
function normalizeDates(context, ...dates) {
|
|
const normalize = _index.constructFrom.bind(
|
|
null,
|
|
context || dates.find((date) => typeof date === "object"),
|
|
);
|
|
return dates.map(normalize);
|
|
}
|