(field: DataField)
| 161 | * Returns if the given field is a computed field. |
| 162 | */ |
| 163 | export function isComputedField(field: DataField) { |
| 164 | return hasAttribute(field, '@computed'); |
| 165 | } |
| 166 | |
| 167 | /** |
| 168 | * Determines if the given data model is a delegate model (i.e. marked with `@@delegate` attribute). |
no test coverage detected