(text: string)
| 79 | } |
| 80 | |
| 81 | static capitalize(text: string): string { |
| 82 | return text.charAt(0).toUpperCase() + text.slice(1); |
| 83 | } |
| 84 | |
| 85 | static shortID(id: string): string { |
| 86 | return id.substring(id.length - 4); |
no outgoing calls
no test coverage detected