UNPKG

@hqtsm/crc

Version:

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

11 lines 225 B
/** * @module * * CRC-64/NVME */ import { crc } from '../crc.js'; /** * CRC-64/NVME */ export default crc(64n, 0xad93d23594c93659n, true, 0xffffffffffffffffn, true, 0xffffffffffffffffn); //# sourceMappingURL=nvme.js.map