* @returns {BroadcastChannel}
()
| 452 | * @returns {BroadcastChannel} |
| 453 | */ |
| 454 | unref() { |
| 455 | if (!isBroadcastChannel(this)) |
| 456 | throw new ERR_INVALID_THIS('BroadcastChannel'); |
| 457 | if (this[kHandle]) |
| 458 | this[kHandle].unref(); |
| 459 | return this; |
| 460 | } |
| 461 | } |
| 462 | |
| 463 | ObjectDefineProperties(BroadcastChannel.prototype, { |
no test coverage detected