(entry, item, vScale, i)
| 142 | } |
| 143 | |
| 144 | function parseValue(entry, item, vScale, i) { |
| 145 | if (isArray(entry)) { |
| 146 | parseFloatBar(entry, item, vScale, i); |
| 147 | } else { |
| 148 | item[vScale.axis] = vScale.parse(entry, i); |
| 149 | } |
| 150 | return item; |
| 151 | } |
| 152 | |
| 153 | function parseArrayOrPrimitive(meta, data, start, count) { |
| 154 | const iScale = meta.iScale; |
no test coverage detected