(displayName, isRtl, allowPhoneInitials)
| 25466 | return displayName; |
| 25467 | } |
| 25468 | function getInitials(displayName, isRtl, allowPhoneInitials) { |
| 25469 | if (!displayName) return ""; |
| 25470 | displayName = cleanupDisplayName(displayName); |
| 25471 | // For names containing CJK characters, and phone numbers, we don't display initials |
| 25472 | if (UNSUPPORTED_TEXT_REGEX.test(displayName) || !allowPhoneInitials && PHONENUMBER_REGEX.test(displayName)) return ""; |
| 25473 | return getInitialsLatin(displayName, isRtl); |
| 25474 | } |
| 25475 | |
| 25476 | },{"@parcel/transformer-js/src/esmodule-helpers.js":"jA2du"}],"7xavy":[function(require,module,exports) { |
| 25477 | var parcelHelpers = require("@parcel/transformer-js/src/esmodule-helpers.js"); |
nothing calls this directly
no test coverage detected