(path: string)
| 281 | * for the span attribute so it's always populated without a catalog read. |
| 282 | */ |
| 283 | const extractNamespace = (path: string): string => { |
| 284 | const normalized = addressToPath(path); |
| 285 | const idx = normalized.indexOf("."); |
| 286 | return idx === -1 ? normalized : normalized.slice(0, idx); |
| 287 | }; |
| 288 | |
| 289 | /** |
| 290 | * Bridges QuickJS `tools.<integration>.<owner>.<connection>.<tool>(args)` calls |
no test coverage detected