(value)
| 23 | ]; |
| 24 | |
| 25 | function toPlainObject(value) { |
| 26 | if (!value) return {}; |
| 27 | if (typeof value.toJSON === "function") return value.toJSON(); |
| 28 | return { ...value }; |
| 29 | } |
| 30 | |
| 31 | function getDatasetName(dataset) { |
| 32 | const plainDataset = toPlainObject(dataset); |
no outgoing calls
no test coverage detected