~khurshid-alam/gtk/packaging-xenial

« back to all changes in this revision

Viewing changes to debian/missing-sources/zlib.js-0.1.6/export/deflate.js

  • Committer: Khurshid Alam (Technologist)
  • Date: 2016-08-17 17:46:23 UTC
  • Revision ID: khurshid.alam@linuxmail.org-20160817174623-8nheg5eemu2jrzbf
gtk+3.0 packaging with icon-size patch

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
goog.require('Zlib.Deflate');
 
2
goog.require('Zlib.exportObject');
 
3
 
 
4
goog.exportSymbol('Zlib.Deflate', Zlib.Deflate);
 
5
goog.exportSymbol(
 
6
  'Zlib.Deflate.compress',
 
7
  Zlib.Deflate.compress
 
8
);
 
9
goog.exportSymbol(
 
10
  'Zlib.Deflate.prototype.compress',
 
11
  Zlib.Deflate.prototype.compress
 
12
);
 
13
Zlib.exportObject('Zlib.Deflate.CompressionType', {
 
14
  'NONE': Zlib.Deflate.CompressionType.NONE,
 
15
  'FIXED': Zlib.Deflate.CompressionType.FIXED,
 
16
  'DYNAMIC': Zlib.Deflate.CompressionType.DYNAMIC
 
17
});