UNPKG

@hqtsm/crc

Version:

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

12 lines 242 B
/** * @module * * CRC-16/T10-DIF */ import { crc } from '../crc.js'; /** * CRC-16/T10-DIF */ export const CRC_16_T10_DIF = crc(16, 0x8bb7, false, 0x0000, false, 0x0000); export default CRC_16_T10_DIF; //# sourceMappingURL=t10-dif.js.map