(value: string)
| 19 | return Format.camelCase(value.replace(/_/g, ' ')) |
| 20 | }, |
| 21 | set(value: string): string { |
| 22 | // My Constant > MY_CONSTANT |
| 23 | return value.replace(/ /g, '_').toUpperCase() |
| 24 | }, |
| 25 | }, |
| 26 | |
| 27 | fullName(person: Person | null | undefined): string { |
no outgoing calls