(meta)
| 441 | const iScaleValue = currentParsed && currentParsed[iScale.axis]; |
| 442 | |
| 443 | const skipNull = (meta) => { |
| 444 | const parsed = meta._parsed.find(item => item[iScale.axis] === iScaleValue); |
| 445 | const val = parsed && parsed[meta.vScale.axis]; |
| 446 | |
| 447 | if (isNullOrUndef(val) || isNaN(val)) { |
| 448 | return true; |
| 449 | } |
| 450 | }; |
| 451 | |
| 452 | for (const meta of metasets) { |
| 453 | if (dataIndex !== undefined && skipNull(meta)) { |
nothing calls this directly
no test coverage detected