@e-group/utils
Version:
eGroup team utils that share across projects.
17 lines (13 loc) • 347 B
JavaScript
;
Object.defineProperty(exports, "__esModule", {
value: true
});
exports.default = shortUsername;
function shortUsername(username) {
if (!username || !username.length) return;
const isEnglish = /^[A-Za-z0-9]*$/.test(username);
if (isEnglish) {
return username.charAt(0).toUpperCase();
}
return username.slice(-2);
}