(path: string[], key: string | undefined, value: boolean)
| 91 | } |
| 92 | |
| 93 | function normalizeBoolean(path: string[], key: string | undefined, value: boolean): boolean { |
| 94 | if (key === 'isAvailable' && isDeviceListPath(path)) { |
| 95 | return true; |
| 96 | } |
| 97 | |
| 98 | return value; |
| 99 | } |
| 100 | |
| 101 | function normalizeNumber(path: string[], key: string | undefined, value: number): number { |
| 102 | if ( |
no test coverage detected