mirror of
https://github.com/0x5eal/rbxts-pako.git
synced 2025-04-04 10:50:59 +01:00
Moved exported constants to .constants
.
This commit is contained in:
parent
cb6d67d157
commit
5638105893
4 changed files with 19 additions and 16 deletions
|
@ -14,6 +14,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|||
- Removed support of `Inflate` & `Deflate` instance create without `new`.
|
||||
- `Inflate.push()` no longer needs second param (end is auto-detected).
|
||||
- Increased default inflate chunk size to 64K.
|
||||
- Moved exported constants to `.constants`.
|
||||
- Switched to es6. Legacy es5 builds available in `/dist`.
|
||||
- Structure of `/dist` folder changed.
|
||||
- Upgraded build tools to modern ones.
|
||||
|
|
16
index.js
16
index.js
|
@ -1,14 +1,14 @@
|
|||
// Top level file is just a mixin of submodules & constants
|
||||
'use strict';
|
||||
|
||||
const assign = require('./lib/utils/common').assign;
|
||||
const { Deflate, deflate, deflateRaw, gzip } = require('./lib/deflate');
|
||||
|
||||
const { Inflate, inflate, inflateRaw, ungzip } = require('./lib/inflate');
|
||||
|
||||
const deflate = require('./lib/deflate');
|
||||
const inflate = require('./lib/inflate');
|
||||
const constants = require('./lib/zlib/constants');
|
||||
|
||||
let pako = {};
|
||||
|
||||
assign(pako, deflate, inflate, constants);
|
||||
|
||||
module.exports = pako;
|
||||
module.exports = {
|
||||
Deflate, deflate, deflateRaw, gzip,
|
||||
Inflate, inflate, inflateRaw, ungzip,
|
||||
constants
|
||||
};
|
||||
|
|
|
@ -374,8 +374,9 @@ function gzip(input, options) {
|
|||
|
||||
|
||||
module.exports = {
|
||||
Deflate: Deflate,
|
||||
deflate: deflate,
|
||||
deflateRaw: deflateRaw,
|
||||
gzip: gzip
|
||||
Deflate,
|
||||
deflate,
|
||||
deflateRaw,
|
||||
gzip,
|
||||
constants: require('./zlib/constants')
|
||||
};
|
||||
|
|
|
@ -413,8 +413,9 @@ function inflateRaw(input, options) {
|
|||
|
||||
|
||||
module.exports = {
|
||||
Inflate: Inflate,
|
||||
inflate: inflate,
|
||||
inflateRaw: inflateRaw,
|
||||
ungzip: inflate
|
||||
Inflate,
|
||||
inflate,
|
||||
inflateRaw,
|
||||
ungzip: inflate,
|
||||
constants: require('./zlib/constants')
|
||||
};
|
||||
|
|
Loading…
Add table
Reference in a new issue