(defaults: T, key: keyof T)
| 91 | } |
| 92 | |
| 93 | function hasValue<T extends Record<string, unknown>>(defaults: T, key: keyof T): boolean { |
| 94 | return Object.prototype.hasOwnProperty.call(defaults, key) && defaults[key] !== undefined; |
| 95 | } |
| 96 | |
| 97 | function normalizeMutualExclusivity(defaults: Partial<SessionDefaults>): { |
| 98 | normalized: Partial<SessionDefaults>; |
no outgoing calls
no test coverage detected