MCPcopy
hub / github.com/apache/echarts / makeInner

Function makeInner

src/util/model.ts:750–755  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

748 * }
749 */
750export function makeInner<T extends object, Host extends object>() {
751 const key = '__ec_inner_' + innerUniqueIndex++;
752 return function (hostObj: Host): T {
753 return (hostObj as any)[key] || ((hostObj as any)[key] = {});
754 };
755}
756let innerUniqueIndex = getRandomIdBase();
757
758/**

Callers 15

CustomSeries.tsFile · 0.90
createRenderPlannerFunction · 0.90
pieLayout.tsFile · 0.90
TreemapView.tsFile · 0.90
treemapVisual.tsFile · 0.90
MarkLineView.tsFile · 0.90
MarkerView.tsFile · 0.90
MarkAreaView.tsFile · 0.90
MarkerModel.tsFile · 0.90
AxisBuilder.tsFile · 0.90

Calls

no outgoing calls

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…