UNPKG

@italia-tools/faker

Version:

Italian-specific fake data generator based on Faker.js

18 lines (15 loc) 428 B
'use strict'; class NameUtils { /** * Formats an Italian name to capitalize the first letter of each word * @param fullName The full name to format * @returns The formatted name */ static formatItalianName(fullName) { return fullName.toLowerCase() .split(' ') .map(word => word.charAt(0).toUpperCase() + word.slice(1)) .join(' '); } } exports.NameUtils = NameUtils;