(url)
| 366 | * @return {string} |
| 367 | */ |
| 368 | export function getFragment(url) { |
| 369 | const index = url.indexOf('#'); |
| 370 | if (index == -1) { |
| 371 | return ''; |
| 372 | } |
| 373 | return url.substring(index); |
| 374 | } |
| 375 | |
| 376 | /** |
| 377 | * Returns whether the URL has the origin of a proxy. |
no outgoing calls
no test coverage detected