UNPKG

cdigit

Version:

Collection of check digit algorithms implemented in JavaScript

10 lines (9 loc) 210 B
/** * cdigit * * @copyright 2018-2023 LiosK * @license (MIT OR Apache-2.0) */ import type { CdigitAlgo } from "../type.js"; /** The Damm algorithm implementation. */ export declare const damm: CdigitAlgo;