()
| 592 | * Returns UID generated based on current date and Math.random module |
| 593 | */ |
| 594 | export function generateUID(): string { |
| 595 | return ( |
| 596 | Math.floor(Date.now() / 1000).toString(36) + |
| 597 | Math.random().toString(36).slice(-6) |
| 598 | ) |
| 599 | } |
| 600 | |
| 601 | /** |
| 602 | * Returns stAppEmbeddingId-${this.embeddingId} string, |
no test coverage detected
searching dependent graphs…