Socket
Socket
Sign inDemoInstall

kennitala

Package Overview
Dependencies
0
Maintainers
1
Versions
23
Alerts
File Explorer

Advanced tools

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.9K
increased by6.1%
Maintainers
1
Install size
10.7 kB
Created
Weekly downloads
 

Readme

Source

Kennitala

A validator and general utility for Icelandic kennitölur in Javascript

Build Status

####Installation with npm:

$ npm install kennitala

####Installation with bower:

$ bower install kennitala

Compatible with CommonJS, AMD modules, regular Javascript.

Pull requests welcome

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
    If passed a string with non-digit characters included it removes them before validating

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

    Checks if kennitala checksum is correct and if day of birth is between 41-71
    If passed a string with non-digit characters included it removes them before validating

Testing

Uses Mocha for testing. In order to execute the tests, you need to run npm install -g mocha first. Once you've done that you can open up a command line and point it to the root directory of the project. From there you should be able to type either npm test or simply mocha to run the tests.

Building

To build the project, you can type npm run dist, which minifies the script and generates a source map, and places both in the dist/ folder.

Coming soonTM

Kennitala generator, for both people and companies

FAQs

Last updated on 09 Oct 2015

Did you know?

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

Packages

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc