8 lines
98 B
JavaScript
Raw Normal View History

2019-11-18 18:18:28 -08:00
class Foo {
constructor() {
this.a = 42;
this.b = 'hello';
this.emit('done');
}
}