(key: string, value: string | any[], addToBrowserHistory = true)
| 90 | } |
| 91 | |
| 92 | static updateURLParam(key: string, value: string | any[], addToBrowserHistory = true) { |
| 93 | const currentParams = URLHandler.parameters; |
| 94 | currentParams[key] = value; |
| 95 | URLHandler.updateUrl(currentParams, addToBrowserHistory); |
| 96 | } |
| 97 | |
| 98 | // /** |
| 99 | // * Generates a key-value map of all URL params and replaces replaceKeys |
no test coverage detected