(counter: Counter)
| 86 | * @returns A unique ID string combining timestamp, process ID, thread ID, and counter |
| 87 | */ |
| 88 | export function getUniqueInstanceId(counter: Counter): string { |
| 89 | return `${getUniqueTimeId()}.${process.pid}.${threadId}.${counter.next()}`; |
| 90 | } |
| 91 | |
| 92 | /** |
| 93 | * Converts a timestamp in milliseconds to a sortable, human-readable date string. |
no test coverage detected