pako/index.js

14 wiersze
344 B
JavaScript
Czysty Zwykły widok Historia

2014-02-03 18:56:46 +00:00
// Top level file is just a mixin of submodules & constants
2014-02-03 18:38:43 +00:00
'use strict';
2014-02-03 18:56:46 +00:00
var assign = require('./lib/zlib/utils').assign;
var deflate = require('./lib/deflate');
var inflate = require('./lib/inflate');
var constants = require('./lib/zlib/constants');
2014-02-03 18:38:43 +00:00
var pako = {};
2014-02-03 18:56:46 +00:00
assign(pako, deflate, inflate, constants);
2014-02-03 18:38:43 +00:00
module.exports = pako;