(value)
| 11 | } |
| 12 | |
| 13 | function encodePathLikeValue(value) { |
| 14 | return String(value) |
| 15 | .split("/") |
| 16 | .map((segment) => encodeURIComponent(segment)) |
| 17 | .join("/"); |
| 18 | } |
| 19 | |
| 20 | export function buildSourceTreeUrl(plugin) { |
| 21 | const sourceRepo = plugin?.source?.repo; |
no outgoing calls
no test coverage detected