UNPKG

@hqtsm/crc

Version:

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

12 lines 237 B
/** * @module * * CRC-16/LJ1200 */ import { crc } from '../crc.js'; /** * CRC-16/LJ1200 */ export const CRC_16_LJ1200 = crc(16, 0x6f63, false, 0x0000, false, 0x0000); export default CRC_16_LJ1200; //# sourceMappingURL=lj1200.js.map