* @returns {EventTarget[]}
()
| 255 | * @returns {EventTarget[]} |
| 256 | */ |
| 257 | composedPath() { |
| 258 | if (!isEvent(this)) |
| 259 | throw new ERR_INVALID_THIS('Event'); |
| 260 | return this[kIsBeingDispatched] ? [this[kTarget]] : []; |
| 261 | } |
| 262 | |
| 263 | /** |
| 264 | * @type {boolean} |
no test coverage detected