1
0
Fork 0
mirror of https://github.com/0x5eal/rbxts-pako.git synced 2025-04-13 15:20:56 +01:00
rbxts-pako/index.js
2014-02-03 22:56:46 +04:00

14 lines
No EOL
344 B
JavaScript

// Top level file is just a mixin of submodules & constants
'use strict';
var assign = require('./lib/zlib/utils').assign;
var deflate = require('./lib/deflate');
var inflate = require('./lib/inflate');
var constants = require('./lib/zlib/constants');
var pako = {};
assign(pako, deflate, inflate, constants);
module.exports = pako;