/** * @author Piotr Kowalski (https://piecioshka.pl/) * @name super-event-emitter * @description 🔨 Lightweight and simple interpretation of popular event management * @version 5.0.3 * @license MIT * @example * const bar = new SuperEventEmitter(); * bar.on('foo', function () { * console.log('foo event emitted'); * }); * bar.emit('foo'); */