(name)
| 483 | const processed = processData(rawData, typescriptStrategy); |
| 484 | |
| 485 | function normalizeIdentifier(name) { |
| 486 | return ( |
| 487 | '0123456789'.includes(name[0]) || |
| 488 | name === 'class' |
| 489 | ) ? '$' + name : name; |
| 490 | } |
| 491 | |
| 492 | function formatJSDocComment(text, indentLevel = 0) { |
| 493 | if (!text) return ''; |
no outgoing calls
no test coverage detected