UNPKG

@wordpress/editor

Version:
10 lines (9 loc) 344 B
// packages/editor/src/utils/get-collaborator-display-name.ts import { __ } from "@wordpress/i18n"; function getCollaboratorDisplayName(collaboratorInfo) { return null === collaboratorInfo.id ? __("Anonymous User") : collaboratorInfo.name; } export { getCollaboratorDisplayName }; //# sourceMappingURL=get-collaborator-display-name.mjs.map