MCPcopy Create free account
hub / github.com/microsoft/SandDance / cleanupDisplayName

Function cleanupDisplayName

docs/app/js/sanddance-app.js:25461–25467  ·  view source on GitHub ↗
(displayName)

Source from the content-addressed store, hash-verified

25459 return initials;
25460}
25461function cleanupDisplayName(displayName) {
25462 displayName = displayName.replace(UNWANTED_ENCLOSURES_REGEX, "");
25463 displayName = displayName.replace(UNWANTED_CHARS_REGEX, "");
25464 displayName = displayName.replace(MULTIPLE_WHITESPACES_REGEX, " ");
25465 displayName = displayName.trim();
25466 return displayName;
25467}
25468function getInitials(displayName, isRtl, allowPhoneInitials) {
25469 if (!displayName) return "";
25470 displayName = cleanupDisplayName(displayName);

Callers 1

getInitialsFunction · 0.85

Calls 1

replaceMethod · 0.80

Tested by

no test coverage detected