(value: string)
| 96 | } |
| 97 | |
| 98 | function refId(value: string): string { |
| 99 | const ref = String(value || '').trim(); |
| 100 | return ref.startsWith('#') ? ref.slice(1) : ref; |
| 101 | } |
| 102 | |
| 103 | function endpointToInternal(endpoint: string, parent?: string, loopScope = false): string { |
| 104 | const value = String(endpoint || '').trim(); |
no outgoing calls
no test coverage detected