()
| 5 | } |
| 6 | |
| 7 | get asObject() { |
| 8 | return this.values.map(values => { |
| 9 | return values.reduce((acc, value, index) => { |
| 10 | acc[this.options.head[index]] = value; |
| 11 | return acc; |
| 12 | }, {}); |
| 13 | }); |
| 14 | } |
| 15 | |
| 16 | push(value) { |
| 17 | this.values.push(value); |
nothing calls this directly
no outgoing calls
no test coverage detected