MCPcopy Create free account
hub / github.com/EsperoTech/yaade / groupsArrayToStr

Function groupsArrayToStr

client/src/utils/index.tsx:104–106  ·  view source on GitHub ↗
(groups?: Array<string>)

Source from the content-addressed store, hash-verified

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

Callers 2

importOpenApiFunction · 0.90
importPostmanFunction · 0.90

Calls

no outgoing calls

Tested by

no test coverage detected