@loaders.gl/compression 4.2.3 → 4.2.4
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/compress-on-worker.js +1 -1
- package/dist/compression-worker.js +1 -1
- package/dist/dist.min.js +2 -2
- package/dist/index.cjs +1 -1
- package/dist/index.cjs.map +1 -1
- package/package.json +4 -4
|
@@ -5,7 +5,7 @@
|
|
|
5
5
|
import { processOnWorker } from '@loaders.gl/worker-utils';
|
|
6
6
|
// __VERSION__ is injected by babel-plugin-version-inline
|
|
7
7
|
// @ts-ignore TS2304: Cannot find name '__VERSION__'.
|
|
8
|
-
const VERSION = typeof "4.2.
|
|
8
|
+
const VERSION = typeof "4.2.3" !== 'undefined' ? "4.2.3" : 'latest';
|
|
9
9
|
/**
|
|
10
10
|
* Worker for Zlib real-time compression and decompression
|
|
11
11
|
*/
|