mirror of
https://github.com/0x5eal/rbxts-pako.git
synced 2025-04-04 10:50:59 +01:00
18 lines
591 B
JavaScript
18 lines
591 B
JavaScript
// Top level file is just a mixin of submodules & constants
|
|
'use strict';
|
|
|
|
const { Deflate, deflate, deflateRaw, gzip } = require('./lib/deflate');
|
|
|
|
const { Inflate, inflate, inflateRaw, ungzip } = require('./lib/inflate');
|
|
|
|
const constants = require('./lib/zlib/constants');
|
|
|
|
module.exports.Deflate = Deflate;
|
|
module.exports.deflate = deflate;
|
|
module.exports.deflateRaw = deflateRaw;
|
|
module.exports.gzip = gzip;
|
|
module.exports.Inflate = Inflate;
|
|
module.exports.inflate = inflate;
|
|
module.exports.inflateRaw = inflateRaw;
|
|
module.exports.ungzip = ungzip;
|
|
module.exports.constants = constants;
|