Simplified undefined check

This commit is contained in:
BordedDev 2025-01-17 00:05:01 +01:00
parent dfe51421ab
commit f1c1a02877

View File

@ -29,9 +29,7 @@ class EventHandler {
if (this.suppresEvents) return []
this.eventCount++
const returnValue = this.events[event].listeners.map((listener) => {
const returnValue = listener(data)
if (returnValue == undefined) return null
return returnValue
return listener(data) ?? null
})
this.events[event].callCount++
if (this.debugEvents) {