crc8.d.ts 92 B

1234
  1. declare function crc8(input: string | number[], previous?: number): number;
  2. export = crc8;