(href)
| 83 | |
| 84 | // Return the corresponding object for the version segment in a path |
| 85 | export function getVersionObjectFromPath(href) { |
| 86 | const versionFromPath = getVersionStringFromPath(href) |
| 87 | |
| 88 | return allVersions[versionFromPath] |
| 89 | } |
| 90 | |
| 91 | // Return the product segment from the path |
| 92 | export function getProductStringFromPath(href) { |
nothing calls this directly
no test coverage detected