Important: This documentation covers Yarn 1 (Classic).
For Yarn 2+ docs and migration guide, see yarnpkg.com.

Package detail

iranian-ssn

rghorbani211.0.2

The Iranian National Code Validation NPM.

iran, ssn, national, code, identity, code melli, melli, meli, persian, nid, iranian

readme

Iranian-SSN

npm

Iranian-SSN lets you validate iranian national code. It checks the code and returns the result as json.

Install

$ npm install iranian-ssn --save

OR

$ yarn add iranian-ssn

Usage

Validation

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

Cities Database

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;

Examples

For a complete, working example, refer to the example.

Tests

$ npm install
$ npm test

Credits

License

The MIT License

Copyright (c) 2015-present Reza Ghorbani Farid <http://rghorbani.ir>