🐛 Bug Fix
- Event emitter (memory hygiene in SPA / Shadow DOM):
EventEmitterstores its per-subject handler namespaces under a__JoditEventEmitterNamespaces<timestamp>property, but onoff()/destruct()it only set that property toundefinedinstead of removing it. On long-lived subjects such aswindow, repeatedly creating and destroying editors in a single-page application left a growing pile of leftoverundefinedkeys on the object. The property is nowdeleted on cleanup, so nothing lingers afterdestruct(). Reported by Ralf Pichler (uniquare.com, Jodit OEM).