Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
Download
80549 views
1
'use strict';
2
3
module.exports = {
4
'2': 'need dictionary', /* Z_NEED_DICT 2 */
5
'1': 'stream end', /* Z_STREAM_END 1 */
6
'0': '', /* Z_OK 0 */
7
'-1': 'file error', /* Z_ERRNO (-1) */
8
'-2': 'stream error', /* Z_STREAM_ERROR (-2) */
9
'-3': 'data error', /* Z_DATA_ERROR (-3) */
10
'-4': 'insufficient memory', /* Z_MEM_ERROR (-4) */
11
'-5': 'buffer error', /* Z_BUF_ERROR (-5) */
12
'-6': 'incompatible version' /* Z_VERSION_ERROR (-6) */
13
};
14