(id: string)
| 22 | * or other filesystem issues, replacing them with underscores. |
| 23 | */ |
| 24 | export function safeFilenameId(id: string): string { |
| 25 | return id.replace(/[^a-zA-Z0-9_-]/g, '_') |
| 26 | } |
| 27 | |
| 28 | /** |
| 29 | * A control_request emitted by the child CLI when it needs permission to |
no outgoing calls
no test coverage detected