* @type {string}
()
| 392 | * @type {string} |
| 393 | */ |
| 394 | get name() { |
| 395 | if (!isBroadcastChannel(this)) |
| 396 | throw new ERR_INVALID_THIS('BroadcastChannel'); |
| 397 | return this[kName]; |
| 398 | } |
| 399 | |
| 400 | /** |
| 401 | * @returns {void} |
nothing calls this directly
no test coverage detected