npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

@zhengqiangtay/mykad

v1.3.4

Published

Library to validate, parse, generate, and format Malaysian identity card (MyKad) numbers

Downloads

156

Readme

MyKad

NPM

The MyKad library provides tools to validate, parse, generate, and format Malaysian Identity Card (MyKad) numbers.

Installation

Using npm:

npm install mykad

Importing

const mykad = require('mykad');

Browser

<script src="browser/mykad.min.js"></script>

Features

Validation

MyKad numbers can be checked for validity. It ensures correct 12-digits, valid date of birth, and place of birth code.

if (mykad.isValid('560224108354')) {
    console.log('Valid MyKad number');
}

if (mykad.isValid('560224-10-8354')) {
    console.log('Also valid...');
}

// Not valid. Invalid date of birth and place of birth code.
mykad.isValid('561372-70-7953')

Formatting

MyKad numbers can be formatted to either have dash or without. Note that this simply formats without validation (date/place of birth code). You can use isValid() if you need to check for validity.

Format

try {
    const formatted = mykad.format('111013018934');
    console.log(formatted); // 111013-01-8934
} catch (error) {
    throw error; // Input error
}

Unformat

try {
    const unformatted = mykad.unformat('111013-01-8934');
    console.log(unformatted); // 111013018934
} catch (error) {
    throw error; // Input error
}

Generate

You can generate random MyKad numbers. All generate numbers are valid MyKad numbers.

const randomIcNum = mykad.generateRandom();
console.log(randomIcNum);

Parsing

MyKad numbers contain information about the holder's date of birth, place of birth, and gender. Date of birth assumes the age is under 100 years old. For example, the birth year '12' is 2012 instead of 1912.

try {
    const data = mykad.parse('890724-01-2498');
    console.log(data);
} catch (error) {
    throw error;
}

Parsed data is as the following:

{
    birthDate: new Date(1989, 6, 24),
    birthPlace: { region: 'SOUTHEAST_ASIA', country: 'MY', state: 'JHR' },
    gender: 'female'
}

Birthplace

State information is available for those born in Malaysia. For others, it either contains the specific country information or only an approximation of the region. However, some countries are uncategorized.

States

['JHR', 'KDH', 'KTN', 'MLK', 'NSN', 'PHG', 'PNG', 'PRK', 'PLS', 'SBH', 'SWK', 'SGR', 'TRG', 'KUL', 'LBN', 'PJY', 'UNKNOWN_STATE']

Countries

Refer to ISO 3166-1 for country codes. Country codes can also contain these following status.

['FOREIGN_UNKNOWN', 'STATELESS', 'UNSPECIFIED']

Region

Some codes for place of birth only contain information of the approximate region or some only an approximate country. The list of regions are the following:

['SOUTHEAST_ASIA', 'BRITISH_ISLES', 'SOVIET_REPUBLIC', 'EAST_ASIA', 'SOUTH_ASIA', 'AFRICA', 'SOUTH_AMERICA', 'CENTRAL_AMERICA', 'OCEANIA', 'MIDDLE_EAST', 'EUROPE', 'MIDDLE_AMERICA', 'MISCELLANEOUS']

Known regions data contains the list of the countries as documented in the official registry. For example:

{
    region: 'NORTH_AMERICA',
    country: 'CA|GL|AN|PM|US',
    state: null
}

Gender

Gender information is provided in the form of the following values:

['male', 'female']

Error handling

You can omit try/catch error handling when the inputted IC numbers are certain to be valid, such as after calling mykad.isValid(icNum) to verify the input.

if (mykad.isValid(icNum)) {
    mykad.format(icNum);
    mykad.unformat(icNum);
    mykad.parse(icNum);
}

Issues

For any issues or suggestions for the library, you can make them on the GitHub repository.

More info: twm