Last `.`-segment (`App.ViewModels.RegisterModel` → `RegisterModel`).
(s: string)
| 115 | |
| 116 | /** Last `.`-segment (`App.ViewModels.RegisterModel` → `RegisterModel`). */ |
| 117 | private lastSegment(s: string): string { |
| 118 | const i = s.lastIndexOf('.'); |
| 119 | return i >= 0 ? s.slice(i + 1) : s; |
| 120 | } |
| 121 | |
| 122 | /** |
| 123 | * Split a type expression into the capitalized type names it contains — base |
no outgoing calls
no test coverage detected