()
| 58 | * @returns A unique run ID string in readable date format |
| 59 | */ |
| 60 | export function getUniqueTimeId(): string { |
| 61 | return sortableReadableDateString( |
| 62 | Math.floor(performance.timeOrigin + performance.now()), |
| 63 | ); |
| 64 | } |
| 65 | |
| 66 | /** |
| 67 | * Generates a unique process/thread ID. |
no test coverage detected