(value: any)
| 1438 | |
| 1439 | // Helper to unwrap a Value expression or return the value itself |
| 1440 | function unwrapValue(value: any): any { |
| 1441 | return isValue(value) ? value.value : value |
| 1442 | } |
| 1443 | |
| 1444 | function attachVirtualPropsToSelected( |
| 1445 | selected: any, |
no test coverage detected