UNPKG

@hqtsm/crc

Version:

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

12 lines 224 B
/** * @module * * CRC-11/UMTS */ import { crc } from '../crc.js'; /** * CRC-11/UMTS */ export const CRC_11_UMTS = crc(11, 0x307, false, 0x000, false, 0x000); export default CRC_11_UMTS; //# sourceMappingURL=umts.js.map