1.0.5 • Published 5 years ago

kid-util v1.0.5

Weekly downloads
1
License
WTFPL
Repository
github
Last release
5 years ago

KID util

Build Status

Development moved to NPM package norwegian-numbers: GitHub npm

Simple utils to generate and verify KID numbers with either MOD10 or MOD11.

Installation

To install from NPM as a package in your environment:

npm install kid-util

Code usage from installation

Example code usages after installation:

> const kid = require('kid-util');
undefined
> kid.make('1234');
'12344'
> kid.make('1234', 'MOD11');
'12343'
> kid.verify('12344');
true
> kid.verify('12343', 'MOD11');
true

Testing from source

To run the tests:

mocha

Or:

npm test

Distribution

The distribution was created by the following commands:

npm publish --access public

Notes

This repo is a JavaScript port of my Python kid-util repo.