(obj)
| 1096 | // It stands in its current implementation as a compromise. |
| 1097 | // Ref: https://github.com/nodejs/node/pull/33661 |
| 1098 | function isEventTarget(obj) { |
| 1099 | return obj?.constructor?.[kIsEventTarget]; |
| 1100 | } |
| 1101 | |
| 1102 | function isNodeEventTarget(obj) { |
| 1103 | return obj?.constructor?.[kIsNodeEventTarget]; |
no outgoing calls
no test coverage detected
searching dependent graphs…