verifiera
Version:
A JavaScript library to perform common operations on Personal Identification Numbers (Social Security Numbers), like: Validation, censoring the individual digits, calculating age and detecting gender.
12 lines (11 loc) • 552 B
TypeScript
import czechSlovakia from './czechSlovakia';
import denmark from './denmark';
import finland from './finland';
import { CountryTools } from './interfaces';
import netherlands from './netherlands';
import norway from './norway';
import poland from './poland';
import sweden from './sweden';
declare const detectCountry: (personalNumber: string) => string;
declare const getCountryTools: (personalNumber: string) => CountryTools;
export { detectCountry, getCountryTools, czechSlovakia, denmark, finland, netherlands, norway, poland, sweden };