mirror of
https://github.com/0x5eal/rbxts-pako.git
synced 2025-04-08 04:40:59 +01:00
14 lines
389 B
JavaScript
14 lines
389 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, deflateRaw, gzip,
|
|
Inflate, inflate, inflateRaw, ungzip,
|
|
constants
|
|
};
|