JSPM

  • Created
  • Published
  • Downloads 11927
  • Score
    100M100P100Q133881F
  • License Apache-2.0

Generate and validate check digits

Package Exports

  • cdigit

This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (cdigit) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.

Readme

cdigit

Generate and validate check digits

SYNOPSIS

const cdigit = require('cdigit');

// Generate and validate check digits using Luhn algorithm
console.log(cdigit.luhn.generate('1234'));  // '4'
console.log(cdigit.luhn.encode('1234'));    // '12344'
console.log(cdigit.luhn.validate('12344')); // true
console.log(cdigit.luhn.validate('12345')); // false