(obj: Record<string, any>, key: string)
| 168 | |
| 169 | // Object.hasOwn() was introduced in Node.js 16.9 |
| 170 | function hasOwn(obj: Record<string, any>, key: string): boolean { |
| 171 | return Object.prototype.hasOwnProperty.call(obj, key); |
| 172 | } |
| 173 | |
| 174 | export abstract class BaseServer extends EventEmitter { |
| 175 | public opts: ServerOptions; |
no outgoing calls
no test coverage detected