(url = "")
| 39 | } |
| 40 | |
| 41 | function stripQueryAndHash(url = "") { |
| 42 | const q = url.split("?")[0]; |
| 43 | const [p, hash] = q.split("#"); |
| 44 | return { path: p, hash: hash || "" }; |
| 45 | } |
| 46 | |
| 47 | function isInternalDocLink(url = "") { |
| 48 | if (!url) return false; |
no outgoing calls
no test coverage detected