(dir: string, id: string | undefined)
| 25 | const MAX_COMMENT_SESSIONS = 20 |
| 26 | |
| 27 | function sessionKey(dir: string, id: string | undefined) { |
| 28 | return `${dir}\n${id ?? WORKSPACE_KEY}` |
| 29 | } |
| 30 | |
| 31 | function decodeSessionKey(key: string) { |
| 32 | const split = key.lastIndexOf("\n") |
no outgoing calls
no test coverage detected