source: trip-planner-front/node_modules/pako/index.js@ ceaed42

Last change on this file since ceaed42 was 6a3a178, checked in by Ema <ema_spirova@…>, 3 years ago

initial commit

  • Property mode set to 100644
File size: 347 bytes
Line 
1// Top level file is just a mixin of submodules & constants
2'use strict';
3
4var assign = require('./lib/utils/common').assign;
5
6var deflate = require('./lib/deflate');
7var inflate = require('./lib/inflate');
8var constants = require('./lib/zlib/constants');
9
10var pako = {};
11
12assign(pako, deflate, inflate, constants);
13
14module.exports = pako;
Note: See TracBrowser for help on using the repository browser.