(p: string)
| 328 | plugin: { path: string; source?: string }, |
| 329 | ): string { |
| 330 | const normalize = (p: string) => |
| 331 | process.platform === 'win32' ? p.replace(/\\/g, '/') : p |
| 332 | let out = value.replace(/\$\{CLAUDE_PLUGIN_ROOT\}/g, () => |
| 333 | normalize(plugin.path), |
| 334 | ) |
no outgoing calls
no test coverage detected