(
sourceFormat: SourceFormat, seriesLayoutBy: SeriesLayoutBy
)
| 378 | }; |
| 379 | |
| 380 | export function getRawSourceItemGetter( |
| 381 | sourceFormat: SourceFormat, seriesLayoutBy: SeriesLayoutBy |
| 382 | ): RawSourceItemGetter { |
| 383 | const method = rawSourceItemGetterMap[getMethodMapKey(sourceFormat, seriesLayoutBy)]; |
| 384 | if (__DEV__) { |
| 385 | assert(method, 'Do not support get item on "' + sourceFormat + '", "' + seriesLayoutBy + '".'); |
| 386 | } |
| 387 | return method; |
| 388 | } |
| 389 | |
| 390 | |
| 391 |
no test coverage detected
searching dependent graphs…