(key, useLocationReplace = false)
| 115 | * Delete a key from the URI. |
| 116 | */ |
| 117 | export function unsetFromURI(key, useLocationReplace = false) { |
| 118 | const items = componentToDict(readComponent()); |
| 119 | delete items[key]; |
| 120 | writeComponent(dictToComponent(items), useLocationReplace); |
| 121 | } |
no test coverage detected
searching dependent graphs…