()
| 12 | } |
| 13 | |
| 14 | getValue() { |
| 15 | return this.source |
| 16 | ? this.source.map(source => { |
| 17 | const transform: any = {} |
| 18 | eachProp(source, (source, key) => { |
| 19 | transform[key] = getFluidValue(source) |
| 20 | }) |
| 21 | return transform |
| 22 | }) |
| 23 | : [] |
| 24 | } |
| 25 | |
| 26 | setValue(source: Source) { |
| 27 | this.source = source |
nothing calls this directly
no test coverage detected