UNPKG

@hqtsm/crc

Version:

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

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