diff options
Diffstat (limited to 'app/src/lib/ts/crc32.worker.ts')
-rw-r--r-- | app/src/lib/ts/crc32.worker.ts | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/app/src/lib/ts/crc32.worker.ts b/app/src/lib/ts/crc32.worker.ts index 2edcc4f..57c1bc9 100644 --- a/app/src/lib/ts/crc32.worker.ts +++ b/app/src/lib/ts/crc32.worker.ts @@ -1,3 +1,5 @@ +// TODO: Think about using a WebAssembly implementation of CRC32 instead of JavaScript. +// WHY? The JavaScript implementation is not very extensible and is not very fast. import crc32 from 'crc/crc32'; onmessage = async (message: MessageEvent<File>) => { |