@liveblocks/react-ui
Version:
A set of React pre-built components for the Liveblocks products. Liveblocks is the all-in-one toolkit to build collaborative products like Figma, Notion, and more.
12 lines (10 loc) • 318 B
JavaScript
function getInitials(name) {
return name.trim().split(" ").reduce((initials, name2, index, array) => {
if (index === 0 || index === array.length - 1) {
initials += name2.charAt(0).toLocaleUpperCase();
}
return initials;
}, "");
}
export { getInitials };
//# sourceMappingURL=get-initials.js.map