(tagBody: string, attributeName: string)
| 98 | } |
| 99 | |
| 100 | function extractAttributeValue(tagBody: string, attributeName: string): string | undefined { |
| 101 | const match = tagBody.match(new RegExp(`${attributeName}\\s*=\\s*"([^"]+)"`)); |
| 102 | return match?.[1]; |
| 103 | } |
| 104 | |
| 105 | function resolveContainerReference(reference: string, baseDir: string): string { |
| 106 | if (reference.startsWith('container:')) { |
no outgoing calls
no test coverage detected