Compressor.prototype.encode = function (data) {
    if (!zlib.deflateSync) {
        return new Buffer(require("pako").deflate(data, this.getOptions()));
    } else {
        return zlib.deflateSync(data, this.getOptions());