(stringValue: string)
| 123 | } |
| 124 | |
| 125 | protected parse(stringValue: string): Set<T> { |
| 126 | return new Set( |
| 127 | stringValue |
| 128 | .split(",") |
| 129 | .filter(singleValue => singleValue.length > 0) |
| 130 | .map(this.parser) |
| 131 | ); |
| 132 | } |
| 133 | } |
no outgoing calls
no test coverage detected