(id: RequestId)
| 80 | const INITIALIZE_REQUEST_ID = 'initialize' |
| 81 | |
| 82 | function requestIdKey(id: RequestId): string { |
| 83 | return `${typeof id}:${String(id)}` |
| 84 | } |
| 85 | |
| 86 | function isObject(value: unknown): value is Record<string, unknown> { |
| 87 | return typeof value === 'object' && value !== null |
no outgoing calls
no test coverage detected