UNPKG

@loaders.gl/crypto

Version:

Cryptographic/hashing plugins for loaders.gl

11 lines 249 B
/** * Calculates the CRC32C checksum of a string. */ export default class CRC32C { options: any; crc: number; constructor(options?: {}); update(arrayBuffer: any): this; finalize(): number; } //# sourceMappingURL=crc32c.d.ts.map