Socket
Socket
Sign inDemoInstall

kennitala

Package Overview
Dependencies
Maintainers
1
Versions
23
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

kennitala

A validator module to check the checksum of Icelandic kennitölur


Version published
Weekly downloads
2.3K
increased by3.63%
Maintainers
1
Weekly downloads
 
Created
Source

Kennitala

A validator for Icelandic kennitölur in node

Build Status

Installation with npm:

$ npm install kennitala

Compatible with CommonJS, AMD modules, regular Javascript.

Based off of old code, so defintiely not bullet proof, if you have a pull request it will almost definitely get accepted.

Example of usage

var kennitala = require('kennitala');

kennitala.clean('310896DIRTYSSID2099'); // '3108962099'
kennitala.clean(3108962099);            // '3108962099'

kennitala.isPerson('3108962099');            // True
kennitala.isPerson('310896-2099');           // True
kennitala.isPerson(3108962099);              // True
kennitala.isPerson('31^_^08!!96LOL20T_T99'); // True

kennitala.isCompany('6010100890');  // True
kennitala.isCompany('601010-0890'); // True
kennitala.isCompany(6010100890);    // True

API

kennitala.clean([string, int]);
    returns string

    Ensures datatype is string, then matches and removes all non-digit characters. Does not ensure the remaining string is 10 characters

kennitala.isPerson([string, int]);
    returns boolean

    Checks if kennitala checksum is correct and if day of birth is between 1-31

kennitala.isCompany([string, int]);
    returns boolean

    Checks if kennitala checksum is correct and if day of birth is between 41-71

Things to add:

Kennitala generator, for both people and companies

Unit tests for everything

FAQs

Package last updated on 06 Oct 2015

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc