You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

18 lines
591 B

1 year ago
  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;