(str: string)
| 1212 | |
| 1213 | const classifyRE = /(?:^|[-_])\w/g |
| 1214 | const classify = (str: string): string => |
| 1215 | str.replace(classifyRE, c => c.toUpperCase()).replace(/[-_]/g, '') |
| 1216 | |
| 1217 | export function getComponentName( |
| 1218 | Component: ConcreteComponent, |
no outgoing calls
no test coverage detected