(name: string)
| 454 | } |
| 455 | |
| 456 | function isComponentName(name: string): boolean { |
| 457 | return /^[A-Z]/.test(name); |
| 458 | } |
| 459 | |
| 460 | function isCustomHookName(name: string): boolean { |
| 461 | return /^use[A-Z0-9]/.test(name); |
no outgoing calls
no test coverage detected