index.js 591 B

123456789101112131415161718
  1. // Top level file is just a mixin of submodules & constants
  2. 'use strict';
  3. const { Deflate, deflate, deflateRaw, gzip } = require('./lib/deflate');
  4. const { Inflate, inflate, inflateRaw, ungzip } = require('./lib/inflate');
  5. const constants = require('./lib/zlib/constants');
  6. module.exports.Deflate = Deflate;
  7. module.exports.deflate = deflate;
  8. module.exports.deflateRaw = deflateRaw;
  9. module.exports.gzip = gzip;
  10. module.exports.Inflate = Inflate;
  11. module.exports.inflate = inflate;
  12. module.exports.inflateRaw = inflateRaw;
  13. module.exports.ungzip = ungzip;
  14. module.exports.constants = constants;