消除我特牛
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.
 
 
 
 
 

635 B

aadhar

Aadhar (English: Foundation) is a 12-digit unique identity number that can be obtained by residents of India, based on their biometric and demographic data.

// usage
chance.aadhar()
chance.aadhar({ onlyLastFour: true }) // false by default
chance.aadhar({ separatedByWhiteSpace: false }) // true by default

Generate a random aadhar.

chance.aadhar();
=> '8506 7820 9696'

Optionally provide option of getting only the last four

chance.aadhar({ onlyLastFour: true });
=> '1851'

Optionally specify dashes be removed

chance.aadhar({ separatedByWhiteSpace: false });
'873300307032'