()
| 86 | // --------------------------------------------------------------------------- |
| 87 | |
| 88 | function tabFromUrl() { |
| 89 | try { |
| 90 | return new URLSearchParams(window.location.search).get("tab") || ""; |
| 91 | } catch { |
| 92 | return ""; |
| 93 | } |
| 94 | } |
| 95 | |
| 96 | function writeTabToUrl(name, { push = true } = {}) { |
| 97 | try { |
no outgoing calls
no test coverage detected