(value: string)
| 292 | } |
| 293 | |
| 294 | function stripWrappingQuotes(value: string): string { |
| 295 | if ( |
| 296 | (value.startsWith('"') && value.endsWith('"')) || |
| 297 | (value.startsWith("'") && value.endsWith("'")) |
| 298 | ) { |
| 299 | return value.slice(1, -1); |
| 300 | } |
| 301 | |
| 302 | return value; |
| 303 | } |
| 304 | |
| 305 | export function syncSkillDescriptions( |
| 306 | workDir: string, |
no outgoing calls
no test coverage detected