| 12 | const generateSessionId = () => nanoid(24) |
| 13 | |
| 14 | interface ReqAndSessionInfo extends IncomingMessage { |
| 15 | sessionID: string |
| 16 | session: Session |
| 17 | sessionStore: Store |
| 18 | } |
| 19 | |
| 20 | function hash(sess: any): string { |
| 21 | // serialize |
nothing calls this directly
no outgoing calls
no test coverage detected