()
| 47 | value: { |
| 48 | cache: false, |
| 49 | get() { |
| 50 | let val; |
| 51 | if (isFunction(objGet(this.schema, "get"))) { |
| 52 | val = this.schema.get(this.model); |
| 53 | } else { |
| 54 | val = objGet(this.model, this.schema.model); |
| 55 | } |
| 56 | |
| 57 | return this.formatValueToField(val); |
| 58 | }, |
| 59 | |
| 60 | set(newValue) { |
| 61 | let oldValue = this.value; |
no outgoing calls
no test coverage detected