mirror of
https://github.com/danog/CodiceFiscaleJS.git
synced 2024-11-26 20:14:55 +01:00
841 B
841 B
CodiceFiscale.js
CodiceFiscale.js is a utility library to compute and validate Italian Italian Tax code (codice fiscale).
Usage
Compute
Compute a codice fiscale given:
- Name (String)
- Surname (String)
- Gender (String) ["M","F"]
- Birthday day (Number)
- Birthday month (Number)
- Birthday year (Number)
- Place of birth (String)
- Province of birth (String)
var cf = CodiceFiscale.compute("Enzo","Righi","M",24,7,1957,"Napoli", "NA");
Check
Check if a codice fiscale is valid. It returns a boolean value.
var isValid = CodiceFiscale.check("VNDLDL10A01G410Z");
Omocodie
Get all the omocodie for a given Codice Fiscale. It returns an array of strings
var omocodie = CodiceFiscale.getOmocodie("VNDLDL10A01G410Z");