UNPKG

@hqtsm/crc

Version:

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

20 lines (17 loc) 204 B
/** * @module * * CRC-10/ATM */ import { crc, type CrcInterface } from '../crc.js'; /** * CRC-10/ATM */ export default crc( 10, 0x233, false, 0x000, false, 0x000, ) as CrcInterface<number>;