Created
June 21, 2017 04:23
-
-
Save miguelmota/a6d2a09c56dd92c9588b03e495f6eeba to your computer and use it in GitHub Desktop.
JavaScript class extend EventEmitter
This file contains 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