(path: string)
| 34 | |
| 35 | /** Returns the discovered tool key for a path when it matches the canonical tool layout. */ |
| 36 | export const toolKeyFromPath = (path: string): string | null => path.match(TOOL_RE)?.[1] ?? null; |
| 37 | |
| 38 | /** Returns true when a path is under a reserved app source folder. */ |
| 39 | export const isReservedArtifactPath = (path: string): boolean => DEFERRED_RE.test(path); |
no outgoing calls
no test coverage detected