(reference: string)
| 425 | } |
| 426 | |
| 427 | export function extractReferenceContent(reference: string): string { |
| 428 | return reference.substring(REFERENCE.START.length, reference.length - REFERENCE.END.length) |
| 429 | } |
| 430 | |
| 431 | export function parseReferencePath(reference: string): string[] { |
| 432 | const content = extractReferenceContent(reference) |
no outgoing calls
no test coverage detected