UNPKG

@hqtsm/crc

Version:

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

12 lines 219 B
/** * @module * * CRC-10/ATM */ import { crc } from '../crc.js'; /** * CRC-10/ATM */ export const CRC_10_ATM = crc(10, 0x233, false, 0x000, false, 0x000); export default CRC_10_ATM; //# sourceMappingURL=atm.js.map