0.1.2 • Published 9 years ago

eventemitter-decorator v0.1.2

Weekly downloads
1
License
MIT
Repository
github
Last release
9 years ago

EventEmitterDecorator

build status npm version

USAGE

import EventEmitter from 'eventemitter-decorator';

@EventEmitter
class Foo {}

const foo = new Foo();
foo.on('hello', (name) => console.log(`hello, ${name}!!`));

foo.emit('hello', 'world');  // 'hello, world!!'
0.1.2

9 years ago

0.1.1

9 years ago

0.1.0

9 years ago