
- some files in zlib.js upstream had missing source code themselves (closure-compiler.jar) or are not needed here, and have been removed to save space; see debian/missing-sources/README for details
13 lines
352 B
JavaScript
13 lines
352 B
JavaScript
goog.require('Zlib.Inflate');
|
|
goog.require('Zlib.exportObject');
|
|
|
|
goog.exportSymbol('Zlib.Inflate', Zlib.Inflate);
|
|
goog.exportSymbol(
|
|
'Zlib.Inflate.prototype.decompress',
|
|
Zlib.Inflate.prototype.decompress
|
|
);
|
|
Zlib.exportObject('Zlib.Inflate.BufferType', {
|
|
'ADAPTIVE': Zlib.Inflate.BufferType.ADAPTIVE,
|
|
'BLOCK': Zlib.Inflate.BufferType.BLOCK
|
|
});
|