• File: index.js
  • Full Path: /var/www/nodejs/daily_store_reports_nodejs/node_modules/pako/index.js
  • Date Modified: 02/04/2023 9:31 PM
  • File size: 347 bytes
  • MIME-type: text/plain
  • Charset: utf-8
// Top level file is just a mixin of submodules & constants
'use strict';

var assign    = require('./lib/utils/common').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;