emitter.listeners(eventName)
Returns a copy of the array of listeners for the event named eventName
.
1 2 3 4 5 | server.on( 'connection' , (stream) => { console.log( 'someone connected!' ); }); console.log(util.inspect(server.listeners( 'connection' ))); // Prints: [ [Function] ] |
Please login to continue.