lua-events icon indicating copy to clipboard operation
lua-events copied to clipboard

A Lua EventEmitter class in node.js style.

Results 1 lua-events issues
Sort by recently updated
recently updated
newest added

Quick test ``` > print(Emitter) table: 008CB508 > e = Emitter() > e:emit('test') > function u() print('Hello') end > e:on('test', u) > e:emit('test') Hello > e:removeListener('test', u) Hello ``` I...