MCPcopy Create free account
hub / github.com/SuperMap/iClient-JavaScript / parseClassType$1

Function parseClassType$1

libs/echarts/echarts.simple.js:12221–12229  ·  view source on GitHub ↗

* Notice, parseClassType('') should returns {main: '', sub: ''} * @public

(componentType)

Source from the content-addressed store, hash-verified

12219 * @public
12220 */
12221function parseClassType$1(componentType) {
12222 var ret = {main: '', sub: ''};
12223 if (componentType) {
12224 componentType = componentType.split(TYPE_DELIMITER);
12225 ret.main = componentType[0] || '';
12226 ret.sub = componentType[1] || '';
12227 }
12228 return ret;
12229}
12230
12231/**
12232 * @public

Callers 3

enableClassManagementFunction · 0.70
enableSubTypeDefaulterFunction · 0.70
getDependenciesFunction · 0.70

Calls

no outgoing calls

Tested by

no test coverage detected