()
| 895 | } |
| 896 | |
| 897 | #getSearchFromParams() { |
| 898 | if (!this.#searchParams?.size) return ''; |
| 899 | return `?${this.#searchParams}`; |
| 900 | } |
| 901 | |
| 902 | #ensureSearchParamsUpdated() { |
| 903 | // URL is updated lazily to greatly improve performance when URLSearchParams is updated repeatedly. |
no outgoing calls
no test coverage detected