main
Raw Download raw file
 1export default {
 2  2:      'need dictionary',     /* Z_NEED_DICT       2  */
 3  1:      'stream end',          /* Z_STREAM_END      1  */
 4  0:      '',                    /* Z_OK              0  */
 5  '-1':   'file error',          /* Z_ERRNO         (-1) */
 6  '-2':   'stream error',        /* Z_STREAM_ERROR  (-2) */
 7  '-3':   'data error',          /* Z_DATA_ERROR    (-3) */
 8  '-4':   'insufficient memory', /* Z_MEM_ERROR     (-4) */
 9  '-5':   'buffer error',        /* Z_BUF_ERROR     (-5) */
10  '-6':   'incompatible version' /* Z_VERSION_ERROR (-6) */
11};