()
| 25 | * Generate unique file ID for execution files |
| 26 | */ |
| 27 | export function generateFileId(): string { |
| 28 | return `file_${Date.now()}_${randomFloat().toString(36).substring(2, 9)}` |
| 29 | } |
| 30 | |
| 31 | /** |
| 32 | * Check if a key matches execution file pattern |
no test coverage detected