(name: string)
| 266 | * Read a boolean-style query parameter. |
| 267 | */ |
| 268 | export function getQueryParamFlag(name: string): boolean { |
| 269 | const value = getQueryParam(name).toLowerCase(); |
| 270 | return value === "1" || value === "true" || value === "yes"; |
| 271 | } |
| 272 | |
| 273 | /** |
| 274 | * Update query parameters while preserving the current hash. |
nothing calls this directly
no test coverage detected