lib-mod10

1.2.2 • Public • Published

lib-mod10

A node module for checking numbers against luhn algorithm

Installation

yarn add lib-mod10

Usage

The library exposes two methods:

  • compute() => Compute checksum for input number
  • check() => Checks input number against luhn algorithm

Compute

// Import lib-mod10
import Mod10 from 'lib-mod10'
 
// Compute checksum for a random number
const cheksum = Mod10.compute('1234567890') // Should output 3

Check

// Import lib-mod10
import Mod10 from 'lib-mod10'
 
// Check random number against luhn algorithm
const isValid = Mod10.check('12345678903') // Should output true

Demo

You can try this module on codepen

Package Sidebar

Install

npm i lib-mod10

Weekly Downloads

4

Version

1.2.2

License

MIT

Unpacked Size

4.82 kB

Total Files

5

Last publish

Collaborators

  • timbeard