MCPcopy Create free account
hub / github.com/ProtonDriveApps/sdk / formatMemberRole

Function formatMemberRole

cli/src/cli/formatters.ts:76–87  ·  view source on GitHub ↗
(memberRole: MemberRole)

Source from the content-addressed store, hash-verified

74}
75
76export function formatMemberRole(memberRole: MemberRole): string {
77 switch (memberRole) {
78 case MemberRole.Inherited:
79 return ' '; // Two spaces to align with icon.
80 case MemberRole.Viewer:
81 return '👁 '; // Extra space due to how terminal render this.
82 case MemberRole.Editor:
83 return '📝';
84 case MemberRole.Admin:
85 return '👑';
86 }
87}
88
89export function sanitizeTerminalText(value: unknown): string {
90 return stripVTControlCharacters(String(value));

Callers 2

printInvitationHumanMethod · 0.90
printNodeHumanMethod · 0.90

Calls

no outgoing calls

Tested by

no test coverage detected