(input)
| 288 | } |
| 289 | |
| 290 | function removeHash(input) { |
| 291 | const hashStart = input.indexOf('#'); |
| 292 | if (hashStart !== -1) { |
| 293 | input = input.slice(0, hashStart); |
| 294 | } |
| 295 | |
| 296 | return input; |
| 297 | } |
| 298 | |
| 299 | function getHash(url) { |
| 300 | let hash = ''; |
no outgoing calls
no test coverage detected
searching dependent graphs…