UNPKG

@hqtsm/crc

Version:

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

12 lines 242 B
/** * @module * * CRC-16/GENIBUS */ import { crc } from '../crc.js'; /** * CRC-16/GENIBUS */ export const CRC_16_GENIBUS = crc(16, 0x1021, false, 0xffff, false, 0xffff); export default CRC_16_GENIBUS; //# sourceMappingURL=genibus.js.map