sl-nic-validator-and-information-extractor
v1.0.6
Published
A function to validate new and old NIC of Sri Lanka and a function to extract information from the NIC
Downloads
17
Maintainers
Readme
Sri Lankan National Identity Card (NIC) Validator and Information Extractor
This package provides functions for validating Sri Lankan National Identity Card (NIC) numbers and extracting details such as date of birth, age, and gender.
Installation
Install the package using npm:
npm install sl-nic-validator-and-information-extractor
or yarn:
yarn add sl-nic-validator-and-information-extractor
Usage
- Validating NIC Numbers:
The isValidSlNic function validates the format and structure of a given NIC number.
import { isValidSlNic } from "sl-nic-validator-and-information-extractor";
const nic = "971902662V"; // Example NIC
const isValid = isValidSlNic(nic);
if (isValid) {
console.log("Valid NIC!");
} else {
console.log("Invalid NIC.");
}
- Extracting Details:
The extractDetailsFromSlNic function takes a valid NIC number and returns an object containing the extracted information:
import { extractDetailsFromSlNic } from "sl-nic-validator-and-information-extractor";
const nic = "971902662V"; // Example NIC
const nicDetails = extractDetailsFromSlNic(nic);
if (nicDetails) {
console.log(nicDetails);
// Output:
// { dateOfBirth: '1997-07-08', age: 26, gender: 'Male' }
} else {
console.log("Invalid NIC, cannot extract details.");
}
The returned object (nicDetails) has the following properties:
- dateOfBirth: A string in the format YYYY-MM-DD representing the date of birth extracted from the NIC.
- age: An integer representing the calculated age based on the date of birth and the current date.
- gender: A string indicating "Male" or "Female" based on the NIC encoding.
Functionality
- Validates both 10-digit and 12-digit Sri Lankan NICs.
- Extracts date of birth, age, and gender from valid NICs.
- Returns undefined for invalid NICs.
Contributing
Contributions are welcome! If you find any bugs or want to add new features, please open an issue or submit a pull request on the GitHub repository.
License
This project is licensed under the MIT License - see the LICENSE file for details.
Contact
For questions or feedback, you can reach out to the project maintainer at [email protected].