UNPKG

@geniucode/common-utils

Version:

Common utils

5 lines 240 B
export const fullNameFromFL = (firstName, lastName) => { const fullName = [firstName, lastName].join(' ').split('').filter(Boolean).join(''); return fullName.length > 2 ? fullName : 'No name'; }; //# sourceMappingURL=fullname.js.map