Simple library to validate Iranian national code.
npm:
npm install national-code --saveYarn (note that yarn add automatically saves the package to the dependencies in package.json):
yarn add national-codeimport nationalCode from 'natioanl-code';
nationalCode(4839941637); // => true
nationalCode(4839941638); // => false
nationalCode('4839941637'); // => true
nationalCode('4839941638'); // => false
nationalCode('2222222222'); // => false
nationalCode(3333333333); // => falseor:
var nationalCode = require('national-code');
nationalCode('4839941637'); // => truegit clone https://github.com/arashmanteghi/national-code.git- Run
npm install - Start the http-server using
npm start - Open http://localhost:9000
npm start- start the http-servernpm run build- build as productionnpm run lint- run an ESLint checknpm run coverage- run code coverage and generate report in thecoveragefoldernpm test- run all testsnpm run test:watch- run all tests in watch mode
national-code is available under MIT.