()
| 7 | const NAME_TO_SLUG = { 'WASI P2': 'p2', 'WASI P3': 'p3' }; |
| 8 | |
| 9 | function readSlugFromUrl() { |
| 10 | const value = new URLSearchParams(window.location.search).get(PARAM_NAME); |
| 11 | return value && SLUG_TO_NAME[value] ? value : null; |
| 12 | } |
| 13 | |
| 14 | function writeSlugToUrl(slug) { |
| 15 | const url = new URL(window.location.href); |
no outgoing calls
no test coverage detected
searching dependent graphs…