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