@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.
14 lines (11 loc) • 345 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;
}, "");
}
exports.getInitials = getInitials;
//# sourceMappingURL=get-initials.cjs.map
;