(data: any)
| 38 | } |
| 39 | |
| 40 | static optionalString(data: any): string|undefined { |
| 41 | return data !== undefined ? String(data) : undefined; |
| 42 | } |
| 43 | |
| 44 | customAsString(name: string): string|undefined { |
| 45 | const value = this.custom.get(name); |
no test coverage detected