UNPKG

sl-nic-utils

Version:

Sri Lanka NIC Utilities - An adaptable npm package designed to validate NIC numbers, determine the NIC format, convert between OLD and NEW formats, and extract detailed information from Sri Lanka National Identity Card (NIC) numbers.

8 lines (7 loc) 172 B
export type NicType = 'OLD' | 'NEW'; export type NicGender = 'Male' | 'Female'; export type NicDetails = { type: NicType; gender: NicGender; birthday: Date; };