(outputId: string, blockId: string)
| 140 | * Extract path from output ID after the block ID |
| 141 | */ |
| 142 | export function extractPathFromOutputId(outputId: string, blockId: string): string { |
| 143 | return outputId.substring(blockId.length + 1) |
| 144 | } |
| 145 | |
| 146 | /** |
| 147 | * Parse JSON content from output safely |
no outgoing calls
no test coverage detected