UNPKG

@hqtsm/crc

Version:

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

12 lines 257 B
/** * @module * * CRC-32/BASE91-D */ import { crc } from '../crc.js'; /** * CRC-32/BASE91-D */ export const CRC_32_BASE91_D = crc(32, 0xa833982b, true, 0xffffffff, true, 0xffffffff); export default CRC_32_BASE91_D; //# sourceMappingURL=base91-d.js.map