Formats a person's full name.
First name
Last name
Formatted full name
import { formatName } from '@consumidor-positivo/ts-utils';const fullName = formatName('John', 'Doe'); // 'John Doe' Copy
import { formatName } from '@consumidor-positivo/ts-utils';const fullName = formatName('John', 'Doe'); // 'John Doe'
Formats a person's full name.