Mlisteners
Bun

method

stream.default.Transform.listeners

listeners<E extends keyof DuplexEventMap>(
eventName: E
): (...args: DuplexEventMap[E]) => void[];

Returns a copy of the array of listeners for the event named eventName.

server.on('connection', (stream) => {
  console.log('someone connected!');
});
console.log(util.inspect(server.listeners('connection')));
// Prints: [ [Function] ]
eventName: string | symbol
): (...args: any[]) => void[];