* Notice, parseClassType('') should returns {main: '', sub: ''} * @public
(componentType)
| 12219 | * @public |
| 12220 | */ |
| 12221 | function 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 |
no outgoing calls
no test coverage detected