(property)
| 156 | } |
| 157 | |
| 158 | function formatPreviewPropertyValue(property) { |
| 159 | if (property.type === 'string') { |
| 160 | return JSONStringify(property.value ?? ''); |
| 161 | } |
| 162 | return property.value ?? property.type; |
| 163 | } |
| 164 | |
| 165 | function trimRemoteObject(result) { |
| 166 | if (result === undefined || result === null || typeof result !== 'object') { |
no outgoing calls
no test coverage detected