* Helper method to safely get a parameter from query string * * @param name - The parameter name to retrieve * @returns The parameter value or null if not found
(name: string)
| 134 | * @returns The parameter value or null if not found |
| 135 | */ |
| 136 | getSearchParam(name: string): string | null { |
| 137 | return this.searchParams.has(name) ? this.searchParams.get(name) as string : null; |
| 138 | } |
| 139 | |
| 140 | /** |
| 141 | * Helper method to iterate over all parameters |
no outgoing calls
no test coverage detected