()
| 1021 | } |
| 1022 | |
| 1023 | get username() { |
| 1024 | if (this.#context.protocol_end + 2 < this.#context.username_end) { |
| 1025 | return StringPrototypeSlice(this.#context.href, this.#context.protocol_end + 2, this.#context.username_end); |
| 1026 | } |
| 1027 | return ''; |
| 1028 | } |
| 1029 | |
| 1030 | set username(value) { |
| 1031 | const href = bindingUrl.update(this.#context.href, updateActions.kUsername, `${value}`); |
no test coverage detected