Iranian-SSN lets you validate iranian national code. It checks the code and returns the result as json.
$ npm install iranian-ssn --save
OR
$ yarn add iranian-ssn
User .validate(ssn, log = false)
to validate your national code.
var result = irssn.validate(ssn);
console.log(result);
result = irssn.validate(ssn, true);
console.log(result);
# => {"status"=>true, "ssn"=>"#ssn", "city_code"=>"044", "city"=>"شمیران", "state"=>"تهران"}
# => false
Unfortunately there is no public official db of city codes and there was typos in unofficial ones. I tried my best to detect typos by both comparing all of them and user comments. Here is the list of discovered references:
Use .cities
to access our cities database.
var cities = irssn.cities;
For a complete, working example, refer to the example.
$ npm install
$ npm test
Copyright (c) 2015-present Reza Ghorbani Farid <http://rghorbani.ir>