summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNiko Lehto <nikle@cendio.se>2020-02-17 10:27:51 +0100
committerNiko Lehto <nikle@cendio.se>2020-02-17 11:29:41 +0100
commit9a31083a8ae4f1a3cfd4977cb1b05151a83bcf26 (patch)
treea612b3bc88f610c33bc94fef53b55482f4eadb65
parent13be552d60f399d8618af5dc22eb4e0838cd9d8e (diff)
downloadnovnc-9a31083a8ae4f1a3cfd4977cb1b05151a83bcf26.tar.gz
Export constants in inflate.js for easier usage
-rw-r--r--vendor/pako/lib/zlib/inflate.js34
1 files changed, 17 insertions, 17 deletions
diff --git a/vendor/pako/lib/zlib/inflate.js b/vendor/pako/lib/zlib/inflate.js
index b79b396..1d2063b 100644
--- a/vendor/pako/lib/zlib/inflate.js
+++ b/vendor/pako/lib/zlib/inflate.js
@@ -13,30 +13,30 @@ var DISTS = 2;
/* Allowed flush values; see deflate() and inflate() below for details */
-//var Z_NO_FLUSH = 0;
-//var Z_PARTIAL_FLUSH = 1;
-//var Z_SYNC_FLUSH = 2;
-//var Z_FULL_FLUSH = 3;
-var Z_FINISH = 4;
-var Z_BLOCK = 5;
-var Z_TREES = 6;
+//export const Z_NO_FLUSH = 0;
+//export const Z_PARTIAL_FLUSH = 1;
+//export const Z_SYNC_FLUSH = 2;
+//export const Z_FULL_FLUSH = 3;
+export const Z_FINISH = 4;
+export const Z_BLOCK = 5;
+export const Z_TREES = 6;
/* Return codes for the compression/decompression functions. Negative values
* are errors, positive values are used for special but normal events.
*/
-var Z_OK = 0;
-var Z_STREAM_END = 1;
-var Z_NEED_DICT = 2;
-//var Z_ERRNO = -1;
-var Z_STREAM_ERROR = -2;
-var Z_DATA_ERROR = -3;
-var Z_MEM_ERROR = -4;
-var Z_BUF_ERROR = -5;
-//var Z_VERSION_ERROR = -6;
+export const Z_OK = 0;
+export const Z_STREAM_END = 1;
+export const Z_NEED_DICT = 2;
+//export const Z_ERRNO = -1;
+export const Z_STREAM_ERROR = -2;
+export const Z_DATA_ERROR = -3;
+export const Z_MEM_ERROR = -4;
+export const Z_BUF_ERROR = -5;
+//export const Z_VERSION_ERROR = -6;
/* The deflate compression method */
-var Z_DEFLATED = 8;
+export const Z_DEFLATED = 8;
/* STATES ====================================================================*/