Created
June 21, 2017 04:23
JavaScript class extend EventEmitter
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
const EventEmitter = require('events') | |
class MyClass extends EventEmitter { | |
constructor() { | |
super() // required | |
this.emit('event', 100) | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
removeListener not work