(value)
| 312 | } |
| 313 | |
| 314 | function isRecord(value) { |
| 315 | return value !== null && typeof value === 'object' && !Array.isArray(value); |
| 316 | } |
| 317 | |
| 318 | function diagnosticIoError(operation, error) { |
| 319 | const code = typeof error?.code === 'string' ? error.code : 'UNKNOWN'; |
no outgoing calls
no test coverage detected