react / wstein / node_modules / browserify / node_modules / browserify-zlib / node_modules / pako / lib / zlib / constants.js
80549 viewsmodule.exports = {12/* Allowed flush values; see deflate() and inflate() below for details */3Z_NO_FLUSH: 0,4Z_PARTIAL_FLUSH: 1,5Z_SYNC_FLUSH: 2,6Z_FULL_FLUSH: 3,7Z_FINISH: 4,8Z_BLOCK: 5,9Z_TREES: 6,1011/* Return codes for the compression/decompression functions. Negative values12* are errors, positive values are used for special but normal events.13*/14Z_OK: 0,15Z_STREAM_END: 1,16Z_NEED_DICT: 2,17Z_ERRNO: -1,18Z_STREAM_ERROR: -2,19Z_DATA_ERROR: -3,20//Z_MEM_ERROR: -4,21Z_BUF_ERROR: -5,22//Z_VERSION_ERROR: -6,2324/* compression levels */25Z_NO_COMPRESSION: 0,26Z_BEST_SPEED: 1,27Z_BEST_COMPRESSION: 9,28Z_DEFAULT_COMPRESSION: -1,293031Z_FILTERED: 1,32Z_HUFFMAN_ONLY: 2,33Z_RLE: 3,34Z_FIXED: 4,35Z_DEFAULT_STRATEGY: 0,3637/* Possible values of the data_type field (though see inflate()) */38Z_BINARY: 0,39Z_TEXT: 1,40//Z_ASCII: 1, // = Z_TEXT (deprecated)41Z_UNKNOWN: 2,4243/* The deflate compression method */44Z_DEFLATED: 845//Z_NULL: null // Use -1 or null inline, depending on var type46};4748