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