(insight: SandDance.specs.Insight)
| 4 | import { SandDance } from '@msrvida/sanddance-explorer'; |
| 5 | |
| 6 | export function cleanInsight(insight: SandDance.specs.Insight) { |
| 7 | delete insight.size; |
| 8 | delete insight.filter; |
| 9 | visit(insight); |
| 10 | } |
| 11 | |
| 12 | function visit(o: object) { |
| 13 | const props = Object.keys(o); |