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
10 lines
257 B
JavaScript
10 lines
257 B
JavaScript
import { constructFrom } from "../constructFrom.js";
|
|
|
|
export function normalizeDates(context, ...dates) {
|
|
const normalize = constructFrom.bind(
|
|
null,
|
|
context || dates.find((date) => typeof date === "object"),
|
|
);
|
|
return dates.map(normalize);
|
|
}
|