| 4 | import { METHODS, ServerResponse as Response, IncomingMessage as Request } from 'http' |
| 5 | |
| 6 | export interface LoggerOptions { |
| 7 | methods?: string[] |
| 8 | output?: { |
| 9 | color: boolean |
| 10 | callback: (string: string) => void |
| 11 | } |
| 12 | timestamp?: boolean | { format?: string } |
| 13 | emoji?: boolean |
| 14 | ip?: boolean |
| 15 | } |
| 16 | |
| 17 | const compileArgs = ( |
| 18 | args: (string | number)[], |
nothing calls this directly
no outgoing calls
no test coverage detected