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.
388 B
388 B
ssn
// usage
chance.ssn()
chance.ssn({ ssnFour: true })
chance.ssn({ dashes: false })
Generate a random social security number.
chance.ssn();
=> '411-90-0070'
Optionally provide option of getting only the last four
chance.ssn({ ssnFour: true });
=> '2938'
Optionally specify dashes be removed
chance.ssn({ dashes: false });
=> '293839295'