You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
504 B
504 B
cf
// usage
chance.cf()
Generate a random Italian social security number (Codice Fiscale).
chance.cf();
=> 'BRSMRT87S49A988X'
Optionally specify any or all components: first name, last name, gender, birth date, place of birth (using ISTAT geocodes for Italian cities).
chance.cf({first: 'Sergio', last: 'Leone'});
=> 'LNESRG93P28F067V'
chance.cf({first: 'Sophia', last: 'Loren', gender: 'Female', birthday: new Date(1934,8,20), city: 'h501'});
=> 'LRNSPH34P60H501G'