mirror of
https://github.com/openclaw/openclaw.git
synced 2026-08-26 12:26:38 -06:00
8 lines
199 B
TypeScript
8 lines
199 B
TypeScript
export function resolveMemoryWikiTimestamp(nowMs?: number): string {
|
|
return (
|
|
new Date(nowMs ?? Date.now()).toJSON() ??
|
|
new Date(Date.now()).toJSON() ??
|
|
new Date().toISOString()
|
|
);
|
|
}
|