(value)
| 69467 | throw new Error(`Unexpected data type: ${typeof value}; constructor: ${value?.constructor?.name}; props: ${propsForError(value)}`); |
| 69468 | } |
| 69469 | return parts; |
| 69470 | } |
| 69471 | function propsForError(value) { |
| 69472 | const props = Object.getOwnPropertyNames(value); |
| 69473 | return `[${props.map((p4) => `"${p4}"`).join(", ")}]`; |
| 69474 | } |
| 69475 | function getName(value) { |
no test coverage detected
searching dependent graphs…