aboutsummaryrefslogtreecommitdiff
path: root/third_party/lzma.js/post.js
blob: c000e810bead18d4e3ed0d18be8626c687e56e45 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
    return returnValue;
  },

  compress: function(data) {
    return this.run(data);
  },

  decompress: function(data) {
    return this.run(data, true);
  }
};