(groups?: Array<string>)
| 102 | } |
| 103 | |
| 104 | function groupsArrayToStr(groups?: Array<string>): string { |
| 105 | return groups?.join(',') ?? ''; |
| 106 | } |
| 107 | |
| 108 | function groupsStrToArray(groups: string): Array<string> { |
| 109 | return groups.split(',').filter((el) => el !== ''); |
no outgoing calls
no test coverage detected