Last change
on this file since 571e0df was 6a3a178, checked in by Ema <ema_spirova@…>, 3 years ago |
initial commit
|
-
Property mode
set to
100644
|
File size:
347 bytes
|
Rev | Line | |
---|
[6a3a178] | 1 | // Top level file is just a mixin of submodules & constants
|
---|
| 2 | 'use strict';
|
---|
| 3 |
|
---|
| 4 | var assign = require('./lib/utils/common').assign;
|
---|
| 5 |
|
---|
| 6 | var deflate = require('./lib/deflate');
|
---|
| 7 | var inflate = require('./lib/inflate');
|
---|
| 8 | var constants = require('./lib/zlib/constants');
|
---|
| 9 |
|
---|
| 10 | var pako = {};
|
---|
| 11 |
|
---|
| 12 | assign(pako, deflate, inflate, constants);
|
---|
| 13 |
|
---|
| 14 | module.exports = pako;
|
---|
Note:
See
TracBrowser
for help on using the repository browser.