mirror of
https://github.com/openclaw/openclaw.git
synced 2026-05-30 07:13:39 +00:00
4 lines
135 B
TypeScript
4 lines
135 B
TypeScript
export function formatFilesystemTimestamp(nowMs = Date.now()): string {
|
|
return new Date(nowMs).toISOString().replaceAll(":", "-");
|
|
}
|