@nomios/web-uikit
Version:
Nomios' living web UIKit
10 lines (8 loc) • 303 B
JavaScript
import _deburr from "lodash/deburr";
const getInitials = name => {
const split = (name || '').split(' ');
const first = split[0][0] || '';
const second = split.length > 1 && split[split.length - 1][0] || '';
return _deburr((first + second).trim()).toUpperCase();
};
export default getInitials;