UNPKG

@hqtsm/crc

Version:

CRC functions with a parameterized engine optimized for both speed and size

20 lines (17 loc) 216 B
/** * @module * * CRC-17/CAN-FD */ import { crc, type CrcInterface } from '../crc.js'; /** * CRC-17/CAN-FD */ export default crc( 17, 0x1685b, false, 0x00000, false, 0x00000, ) as CrcInterface<number>;