* @type {EventTarget}
()
| 197 | * @type {EventTarget} |
| 198 | */ |
| 199 | get currentTarget() { |
| 200 | if (!isEvent(this)) |
| 201 | throw new ERR_INVALID_THIS('Event'); |
| 202 | return this[kIsBeingDispatched] ? this[kTarget] : null; |
| 203 | } |
| 204 | |
| 205 | /** |
| 206 | * @type {EventTarget} |