feat: add support for catch-all listeners for outgoing packets
This is similar to `onAny()`, but for outgoing packets.
Syntax:
```js
socket.onAnyOutgoing((event, ...args) => {
console.log(event);
});
```
Related: https://github.com/socketio/socket.io/commit/531104d332690138b7aab84d5583d6204132c8b4 D
Damien Arrachequesne committed
74e3e601a43133b2c0ea43c3de2764cc55b57b5a
Parent: 692d54e