
- 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
22 lines
455 B
JavaScript
22 lines
455 B
JavaScript
goog.require('Zlib.RawDeflate');
|
|
goog.require('Zlib.exportObject');
|
|
|
|
goog.exportSymbol(
|
|
'Zlib.RawDeflate',
|
|
Zlib.RawDeflate
|
|
);
|
|
|
|
goog.exportSymbol(
|
|
'Zlib.RawDeflate.prototype.compress',
|
|
Zlib.RawDeflate.prototype.compress
|
|
);
|
|
|
|
Zlib.exportObject(
|
|
'Zlib.RawDeflate.CompressionType',
|
|
{
|
|
'NONE': Zlib.RawDeflate.CompressionType.NONE,
|
|
'FIXED': Zlib.RawDeflate.CompressionType.FIXED,
|
|
'DYNAMIC': Zlib.RawDeflate.CompressionType.DYNAMIC
|
|
}
|
|
);
|