Skip to content

Latest commit

 

History

History
12 lines (11 loc) · 344 Bytes

readme.md

File metadata and controls

12 lines (11 loc) · 344 Bytes

Custom Event Emitter (Node.js)

Write your own MyEventEmitter class with the same interface as in Node.js. Required methods are:

  • on
  • once
  • off
  • emit
  • prependListener
  • prependOnceListener
  • removeAllListeners
  • listenerCount

Read the guideline before start